Skip to content

Commit

Permalink
Release: allow Integration Tests Jar to be deployed to Maven central (#…
Browse files Browse the repository at this point in the history
…12292)

- integration tests framework is needed by Pulsar Adapters project
- during the release procedure, while running 'mvn deploy -DskipTests -Papache-release -DintegrationTests --settings src/settings.xml' allow to deploy integration tests jars
  • Loading branch information
eolivelli authored and 315157973 committed Dec 18, 2021
1 parent 660b78d commit 4f19b71
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,26 @@
</plugins>
</build>
</profile>
<profile>
<id>apache-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>${maven.deploy.skip}</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 4f19b71

Please sign in to comment.