Skip to content

Commit

Permalink
Prepare the project for the first Maven Central release. (aerospike-c…
Browse files Browse the repository at this point in the history
…ommunity#65)

* Prepare the project for the first Maven Central release.

* Use revision property inorder not to repeat the parent version.
  • Loading branch information
roimenashe authored Aug 11, 2021
1 parent dc64bc8 commit e6f526a
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Auto configuration for Spring Data Aerospike

:repo-master: https://github.com/aerospike-community/spring-boot-data-aerospike/blob/master
:repo-master: https://github.com/aerospike-community/spring-data-aerospike-starters/blob/master

== Usage

Expand Down
38 changes: 29 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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>
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -120,9 +130,7 @@
<artifactId>spring-cloud-starter-bootstrap</artifactId>
<version>${spring-cloud-starter.version}</version>
</dependency>

</dependencies>

</dependencyManagement>

<repositories>
Expand Down Expand Up @@ -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>
4 changes: 2 additions & 2 deletions spring-boot-autoconfigure-data-aerospike/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<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>
</parent>

<artifactId>spring-boot-autoconfigure-data-aerospike</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-starter-data-aerospike-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<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>
</parent>

<packaging>pom</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spring-boot-starter-data-aerospike-example</artifactId>
<groupId>com.aerospike</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spring-boot-starter-data-aerospike-example/sync/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spring-boot-starter-data-aerospike-example</artifactId>
<groupId>com.aerospike</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions spring-boot-starter-data-aerospike-reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<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>
</parent>

<artifactId>spring-boot-starter-data-aerospike-reactive</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-starter-data-aerospike/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<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>
</parent>

<artifactId>spring-boot-starter-data-aerospike</artifactId>
Expand Down

0 comments on commit e6f526a

Please sign in to comment.