-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare the project for the first Maven Central release. (aerospike-c…
…ommunity#65) * Prepare the project for the first Maven Central release. * Use revision property inorder not to repeat the parent version.
- Loading branch information
1 parent
dc64bc8
commit e6f526a
Showing
8 changed files
with
40 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,16 @@ | |
</parent> | ||
|
||
<groupId>com.aerospike</groupId> | ||
<artifactId>spring-boot-data-aerospike</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<artifactId>spring-data-aerospike-starters</artifactId> | ||
<version>${revision}</version> | ||
|
||
<name>Spring Data Aerospike Starters</name> | ||
<description>Autoconfiguration project for Spring Data Aerospike.</description> | ||
<url>https://github.com/aerospike-community/spring-data-aerospike-starters</url> | ||
<organization> | ||
<name>Aerospike Inc.</name> | ||
<url>https://www.aerospike.com</url> | ||
</organization> | ||
|
||
<packaging>pom</packaging> | ||
|
||
|
@@ -23,11 +31,13 @@ | |
</modules> | ||
|
||
<properties> | ||
<revision>0.5.0</revision> | ||
<java.version>1.8</java.version> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
<maven.compiler.target>${java.version}</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> | ||
|
||
<spring-data-aerospike.version>2.4.2.RELEASE</spring-data-aerospike.version> | ||
<aerospike-reactor-client.version>4.4.10</aerospike-reactor-client.version> | ||
|
@@ -69,10 +79,10 @@ | |
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/aerospike-community/spring-boot-data-aerospike.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]:aerospike-community/spring-boot-data-aerospike.git | ||
<connection>scm:git:git://github.com/aerospike-community/spring-data-aerospike-starters.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]:aerospike-community/spring-data-aerospike-starters.git | ||
</developerConnection> | ||
<url>https://github.com/aerospike-community/spring-boot-data-aerospike</url> | ||
<url>https://github.com/aerospike-community/spring-data-aerospike-starters</url> | ||
</scm> | ||
|
||
<dependencyManagement> | ||
|
@@ -120,9 +130,7 @@ | |
<artifactId>spring-cloud-starter-bootstrap</artifactId> | ||
<version>${spring-cloud-starter.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</dependencyManagement> | ||
|
||
<repositories> | ||
|
@@ -164,10 +172,22 @@ | |
</executions> | ||
<configuration> | ||
<doclint>none</doclint> | ||
<failOnError>false</failOnError> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>${maven.gpg.plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters