Skip to content

Commit

Permalink
Release 6.0.0 preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
ppodgorsek committed Jun 25, 2023
1 parent 706c9f9 commit 540ebb4
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 37 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ The versioning of this project follows the one of the Spring Framework:

The dependencies used are:

* Spring Framework 5
* DBUnit 2.6
* Spring Framework 6
* DBUnit 2.7
* JUnit 5

## How to use this project
Expand Down
47 changes: 15 additions & 32 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>com.github.ppodgorsek</groupId>
<artifactId>spring-test-dbunit-parent</artifactId>
<version>5.2.1-SNAPSHOT</version>
<version>6.0.0</version>
<packaging>pom</packaging>

<name>Spring Test DBUnit Parent</name>
Expand Down Expand Up @@ -446,6 +446,20 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -479,37 +493,6 @@
</plugins>
</build>

<profiles>
<profile>
<id>artifacts-signing</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>maven.sign.skip</name>
<value>false</value>
</property>
</activation>
<build>
<plugins>
<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>
</profile>
</profiles>

<reporting>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion spring-test-dbunit-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.ppodgorsek</groupId>
<artifactId>spring-test-dbunit-parent</artifactId>
<version>5.2.1-SNAPSHOT</version>
<version>6.0.0</version>
</parent>

<groupId>com.github.ppodgorsek</groupId>
Expand Down
2 changes: 1 addition & 1 deletion spring-test-dbunit-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.ppodgorsek</groupId>
<artifactId>spring-test-dbunit-parent</artifactId>
<version>5.2.1-SNAPSHOT</version>
<version>6.0.0</version>
</parent>

<groupId>com.github.ppodgorsek</groupId>
Expand Down
2 changes: 1 addition & 1 deletion spring-test-dbunit-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.ppodgorsek</groupId>
<artifactId>spring-test-dbunit-parent</artifactId>
<version>5.2.1-SNAPSHOT</version>
<version>6.0.0</version>
</parent>

<groupId>com.github.ppodgorsek</groupId>
Expand Down

0 comments on commit 540ebb4

Please sign in to comment.