diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-17 23:33:27 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-17 23:33:49 +0200 |
commit | f2dd46cf5745f7c14f2bce20f5131e4e242f8c7c (patch) | |
tree | 11ea192820faf6916a522d59886f923ac5bd6c1f /sonar-batch-maven-compat | |
parent | fa306cf2509a427937642db79e391e48ce85221e (diff) | |
download | sonarqube-f2dd46cf5745f7c14f2bce20f5131e4e242f8c7c.tar.gz sonarqube-f2dd46cf5745f7c14f2bce20f5131e4e242f8c7c.zip |
SONAR-4969 Do not mix batch and server classpaths
Diffstat (limited to 'sonar-batch-maven-compat')
-rw-r--r-- | sonar-batch-maven-compat/pom.xml | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/sonar-batch-maven-compat/pom.xml b/sonar-batch-maven-compat/pom.xml index 3990762b480..087be6a8d57 100644 --- a/sonar-batch-maven-compat/pom.xml +++ b/sonar-batch-maven-compat/pom.xml @@ -14,10 +14,14 @@ <dependencies> <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>sonar-batch</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.7</version> - <scope>compile</scope> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> @@ -43,20 +47,4 @@ </plugin> </plugins> </build> - - <profiles> - <profile> - <id>release</id> - <build> - <plugins> - <plugin> - <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - </profiles> </project> |