Skip to content

Commit

Permalink
Merge pull request #282 from apache/bugfix/265-Unable-to-release-with…
Browse files Browse the repository at this point in the history
…out-auto-staging

Issue #265: Unable to release without auto-staging
  • Loading branch information
reckart committed Jan 12, 2023
2 parents 03b3745 + 6560919 commit 1416d11
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@
</dependency>
</dependencies>


<modules>
<module>uimaj-parent</module>
<module>aggregate-uimaj</module>
Expand Down Expand Up @@ -333,7 +332,6 @@

<profile>
<id>apache-release</id>

<build>
<plugins>
<plugin>
Expand All @@ -354,6 +352,19 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>apache-release-rc-auto-staging-config</id>
<activation>
<property>
<name>!disable-rc-auto-staging</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand Down Expand Up @@ -390,7 +401,7 @@
</plugins>
</build>
</profile>

<profile>
<id>json-support</id>
<activation>
Expand Down

0 comments on commit 1416d11

Please sign in to comment.