Skip to content

Commit

Permalink
Prepare for a 1.0.0-M9 release
Browse files Browse the repository at this point in the history
Signed-off-by: Scott M Stark <starksm64@gmail.com>
  • Loading branch information
starksm64 committed Aug 21, 2024
1 parent b981a60 commit 55c12f8
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 114 deletions.
2 changes: 1 addition & 1 deletion arquillian/appclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>jakarta.tck</groupId>
<artifactId>tck.arquillian.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion arquillian/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>jakarta.tck</groupId>
<artifactId>tck.arquillian.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion arquillian/javatest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>jakarta.tck</groupId>
<artifactId>tck.arquillian.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion arquillian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- Artifact Configuration -->
<groupId>jakarta.tck</groupId>
<artifactId>tck.arquillian.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<packaging>pom</packaging>
<name>Arquillian Jakarta TCK Parent</name>
<description>Protocols and testenrichers for Jakarta TCKs</description>
Expand Down
2 changes: 1 addition & 1 deletion arquillian/porting-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>jakarta.tck</groupId>
<artifactId>tck.arquillian.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion arquillian/protocol-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>jakarta.tck</groupId>
<artifactId>tck.arquillian.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion tools/jar2shrinkwrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>1.0.9</version>
</parent>

<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>
<groupId>jakarta.tck</groupId>
<artifactId>jar2shrinkwrap</artifactId>

Expand Down
34 changes: 21 additions & 13 deletions tools/tck-rewrite-ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>jakarta.tck</groupId>
<artifactId>tck-rewrite-ant</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand Down Expand Up @@ -208,18 +208,6 @@
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -235,4 +223,24 @@
</plugins>
</build>

<profiles>
<profile>
<!-- This profile is used to run the tests that use newer dom4j newer that what ant uses -->
<id>test-with-dom4j</id>
<dependencies>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

This file was deleted.

2 changes: 1 addition & 1 deletion tools/tck-rewrite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>jakarta.tck</groupId>
<artifactId>tck-rewrite-tools</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-M9</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand Down

0 comments on commit 55c12f8

Please sign in to comment.