-
Type:
Task
-
Status: Closed
-
Priority:
Minor
-
Resolution: Completed
-
Affects Version/s: None
-
Fix Version/s: portal-1.0.1, portal-2.0.1, bridge-impl-2.1.0, bridge-impl-3.1.0, bridge-impl-4.1.0, portal-3.0.1
-
Labels:None
In order to ensure that the integration tests are not released as a jar artifact, it is necessary to add the following configuration to the appropriate pom.xml descriptors:
pom.xml
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin>