Skip to content

Commit 7368dff

Browse files
authored
Merge pull request #3 from Senzing/caceres.initial-revision
Version 2.9.0 -- initial open-source release
2 parents c27f970 + cbdaa5f commit 7368dff

33 files changed

+7952
-22
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,11 @@
2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
2424

25-
.history
25+
.history
26+
27+
# Maven build artifact directory
28+
target/*
29+
30+
# IntelliJ project directory info
31+
.idea/*
32+

CHANGELOG.md

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
[markdownlint](https://dlaa.me/markdownlint/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9-
## [Unreleased]
9+
## [2.9.0] - 2021-09-15
1010

11-
- Thing 5
12-
- Thing 4
13-
14-
## [1.0.1] - yyyy-mm-dd
15-
16-
### Added to 1.0.1
17-
18-
- Thing 3
19-
20-
### Fixed in 1.0.1
21-
22-
- Thing 2
23-
24-
## [1.0.0] - yyyy-mm-dd
25-
26-
### Added to 1.0.0
27-
28-
- Thing 2
29-
- Thing 1
11+
### Initial open-source release

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
# g2-sdk-java
1+
# g2-sdk-java
2+
3+
## Overview
4+
5+
The Senzing G2 Java SDK provides the Java interface to the native Senzing SDK's.
6+
This repository is dependent on the native Senzing G2 library that is part of
7+
the Senzing G2 product via JNI and will not actually function without it.
8+
Previously, this SDK was only available as part of the Senzing G2 product, but
9+
is being made available as open source for publishing on the Maven Central
10+
Repository.
11+
12+
### Building
13+
14+
To build simply execute:
15+
16+
```console
17+
mvn install
18+
```
19+
20+
The JAR file will be contained in the `target` directory under the
21+
name `g2.jar`.

pom.xml

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.senzing</groupId>
5+
<artifactId>g2</artifactId>
6+
<packaging>jar</packaging>
7+
<version>2.9.0</version>
8+
<name>Senzing G2 Java SDK</name>
9+
<description>The Java SDK for the Senzing G2 Engine. This calls through to the native Senzing SDK via JNI.</description>
10+
<url>http://github.com/Senzing/g2-sdk-java</url>
11+
<licenses>
12+
<license>
13+
<name>The Apache License, Version 2.0</name>
14+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
15+
</license>
16+
</licenses>
17+
<distributionManagement>
18+
<snapshotRepository>
19+
<id>ossrh</id>
20+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
21+
</snapshotRepository>
22+
<repository>
23+
<id>ossrh</id>
24+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
25+
</repository>
26+
</distributionManagement>
27+
<developers>
28+
<developer>
29+
<name>Jae Adams</name>
30+
<email>jae@senzing.com</email>
31+
<organization>Senzing</organization>
32+
<organizationUrl>http://www.senzing.com</organizationUrl>
33+
</developer>
34+
<developer>
35+
<name>Jeff Adair</name>
36+
<email>jeffadair@senzing.com</email>
37+
<organization>Senzing</organization>
38+
<organizationUrl>http://www.senzing.com</organizationUrl>
39+
</developer>
40+
<developer>
41+
<name>Brian Macy</name>
42+
<email>brian@senzing.com</email>
43+
<organization>Senzing</organization>
44+
<organizationUrl>http://www.senzing.com</organizationUrl>
45+
</developer>
46+
<developer>
47+
<name>Barry M. Caceres</name>
48+
<email>barry@senzing.com</email>
49+
<organization>Senzing</organization>
50+
<organizationUrl>http://www.senzing.com</organizationUrl>
51+
</developer>
52+
<developer>
53+
<name>Oskar Thorbjornsson</name>
54+
<email>oskar@senzing.com</email>
55+
<organization>Senzing</organization>
56+
<organizationUrl>http://www.senzing.com</organizationUrl>
57+
</developer>
58+
</developers>
59+
<scm>
60+
<connection>scm:git:git://github.com/Senzing/g2-sdk-java.git</connection>
61+
<developerConnection>scm:git:ssh://github.com:Senzing/g2-sdk-java.git</developerConnection>
62+
<url>http://github.com/Senzing/g2-sdk-java/tree/main</url>
63+
</scm>
64+
<dependencies>
65+
</dependencies>
66+
<properties>
67+
<maven.compiler.source>11</maven.compiler.source>
68+
<maven.compiler.target>11</maven.compiler.target>
69+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
70+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
71+
</properties>
72+
<build>
73+
<finalName>${project.artifactId}</finalName>
74+
<plugins>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-source-plugin</artifactId>
78+
<version>3.2.1</version>
79+
<executions>
80+
<execution>
81+
<id>attach-sources</id>
82+
<goals>
83+
<goal>jar-no-fork</goal>
84+
</goals>
85+
</execution>
86+
</executions>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-javadoc-plugin</artifactId>
91+
<version>3.3.0</version>
92+
<executions>
93+
<execution>
94+
<id>attach-javadocs</id>
95+
<goals>
96+
<goal>jar</goal>
97+
</goals>
98+
</execution>
99+
</executions>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-gpg-plugin</artifactId>
104+
<version>3.0.1</version>
105+
<executions>
106+
<execution>
107+
<id>sign-artifacts</id>
108+
<phase>verify</phase>
109+
<goals>
110+
<goal>sign</goal>
111+
</goals>
112+
</execution>
113+
</executions>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.sonatype.plugins</groupId>
117+
<artifactId>nexus-staging-maven-plugin</artifactId>
118+
<version>1.6.7</version>
119+
<extensions>true</extensions>
120+
<configuration>
121+
<serverId>ossrh</serverId>
122+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
123+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
124+
</configuration>
125+
</plugin>
126+
</plugins>
127+
</build>
128+
</project>

0 commit comments

Comments
 (0)