Skip to content

Commit

Permalink
build: don't auto release
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed Jun 30, 2023
1 parent 7cbfd3d commit 97c8cdb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 20 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@ jobs:
maven-url: oss.sonatype.org
maven-gpg-passphrase: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_PASSPHRASE }}
maven-additional-options: -DskipChecks -DskipTests
maven-auto-release-after-close: true
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-test-container-root</artifactId>
<version>3.6.1-SNAPSHOT</version>
<version>3.5.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-test-container-root</artifactId>
<version>3.6.1-SNAPSHOT</version>
<version>3.5.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
7 changes: 1 addition & 6 deletions exporter-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-test-container-root</artifactId>
<version>3.6.1-SNAPSHOT</version>
<version>3.5.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -16,11 +16,6 @@
<properties>
<!-- fix minimum JDK to 17, meaning the exporter is not compatible with Zeebe < 8.x -->
<version.java>17</version.java>

<!-- skip deployment to nexus -->
<skip.central.release>true</skip.central.release>
<skipStaging>true</skipStaging>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</properties>

<dependencies>
Expand Down
7 changes: 1 addition & 6 deletions exporter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-test-container-root</artifactId>
<version>3.6.1-SNAPSHOT</version>
<version>3.5.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -16,11 +16,6 @@
<properties>
<!-- fix minimum JDK to 17, meaning the exporter is not compatible with Zeebe < 8.x -->
<version.java>17</version.java>

<!-- skip deployment to nexus -->
<skip.central.release>true</skip.central.release>
<skipStaging>true</skipStaging>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</properties>

<dependencies>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<artifactId>community-hub-release-parent</artifactId>
<version>1.4.2</version>
<!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 -->
<relativePath />
<relativePath/>
</parent>

<groupId>io.zeebe</groupId>
<artifactId>zeebe-test-container-root</artifactId>
<version>3.6.1-SNAPSHOT</version>
<version>3.5.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Zeebe Test Container Root</name>
<url>https://github.com/zeebe-io/zeebe-test-container</url>
Expand Down Expand Up @@ -473,7 +473,7 @@
<include>**/*.md</include>
</includes>

<flexmark />
<flexmark/>
</markdown>
</configuration>
<executions>
Expand Down Expand Up @@ -521,7 +521,7 @@
<goal>check</goal>
</goals>
<phase>validate</phase>
<configuration />
<configuration/>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -636,7 +636,7 @@
<configuration>
<!-- see more https://maven.apache.org/enforcer/enforcer-rules/index.html -->
<rules>
<banDuplicatePomDependencyVersions />
<banDuplicatePomDependencyVersions/>
</rules>
</configuration>
</execution>
Expand Down

0 comments on commit 97c8cdb

Please sign in to comment.