Skip to content

Commit

Permalink
Merge pull request #1065 from Ladicek/new-release-workflow
Browse files Browse the repository at this point in the history
Only enable the testsuite module if not doing a release
  • Loading branch information
Ladicek authored Oct 24, 2024
2 parents 4b8ff77 + a1ec9b6 commit 344d33a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 20 deletions.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@
<modules>
<module>api</module>
<module>implementation</module>
<module>testsuite</module>
</modules>

<dependencyManagement>
Expand Down Expand Up @@ -412,6 +411,19 @@
</dependencyManagement>

<profiles>
<profile>
<id>not-release</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>testsuite</module>
</modules>
</profile>

<profile>
<id>release</id>
<activation>
Expand Down
19 changes: 0 additions & 19 deletions testsuite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,4 @@
<module>integration</module>
<module>tck</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 344d33a

Please sign in to comment.