]> source.dussan.org Git - sonarqube.git/commitdiff
Prevent integration test modules to be deployed on central repository
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 14 Oct 2015 08:51:33 +0000 (10:51 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 14 Oct 2015 08:51:33 +0000 (10:51 +0200)
it/pom.xml

index 3827d74ab4182a06419fb224efb1bf0718a7491c..11aac989b0f0b294c5fa32f291f47735f603aa14 100644 (file)
     <module>it-tests</module>
   </modules>
 
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <configuration>
+              <skip>true</skip>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>