sonarqube/it/pom.xml
Jenkins CI 0b322db430 Automatic merge from branch-5.2
* origin/branch-5.2:
  SONAR-6880 Fix SSF-37
  Revert "SONAR-6310 Delete RoR WS api/profiles/index"
  SONAR-6397 remove last line trick from ComputeFileSourceData
  SONAR-6397 read changeset from DB only if File is unmodified
  SONAR-6397 ScmInfoRepository optimisation for non FILE components
  Clean all temporary JS dependencies before release
  Prevent integration test modules to be deployed on central repository
  Deploy module sonar-server to maven central
  fix alignment in the file details
  fix applying of issue filter when user is not authenticated
  Revert "SONAR-6309 Delete RoR WS profiles/list"
2015-10-14 15:32:56 +02:00

38 lines
1005 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
<version>5.3-SNAPSHOT</version>
</parent>
<artifactId>it</artifactId>
<version>5.3-SNAPSHOT</version>
<name>SonarQube Integration Tests</name>
<packaging>pom</packaging>
<modules>
<module>it-plugins</module>
<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>