diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-01-25 18:00:45 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-01-25 18:18:45 +0100 |
commit | f6bcd1b80a758e9dd5e52af1ec6dd24c5ae45a31 (patch) | |
tree | a0daefb653b498b0f0631013899c7902c332896d /pom.xml | |
parent | e2390331215b0882c758ba218e50df764a00a6a6 (diff) | |
download | sonarqube-f6bcd1b80a758e9dd5e52af1ec6dd24c5ae45a31.tar.gz sonarqube-f6bcd1b80a758e9dd5e52af1ec6dd24c5ae45a31.zip |
SONAR-4087 fix compatibility of Tinkerpop Blueprints with Java 5
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 45 |
1 files changed, 29 insertions, 16 deletions
@@ -1,5 +1,6 @@ <?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/maven-v4_0_0.xsd"> +<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.sonar</groupId> @@ -88,7 +89,7 @@ <skipSanityChecks>false</skipSanityChecks> <!-- default GWT configuration. It's overridden by the profile 'dev' to speed up compilation in dev environments--> - <gwt.permutationSuffix /> + <gwt.permutationSuffix/> <gwt.extraJvmArgs>-Xmx512m -Xss1024k</gwt.extraJvmArgs> <sonar.snapshotRepository.url>dav:https://dav.codehaus.org/snapshots.repository/sonar</sonar.snapshotRepository.url> </properties> @@ -643,12 +644,31 @@ <dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-core</artifactId> - <version>2.2.0</version> + <!-- + Do not upgrade because of compatibility with Java 5. + See https://github.com/tinkerpop/blueprints/pull/352 + --> + <version>2.0.0</version> + <exclusions> + <!-- we use our own GraphSON implementation based on json-simple --> + <exclusion> + <groupId>org.codehaus.jettison</groupId> + <artifactId>jettison</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-jaxrs</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> + <!-- + Do not upgrade because of compatibility with Java 5. + See https://github.com/tinkerpop/pipes/pull/74 + --> <groupId>com.tinkerpop.gremlin</groupId> <artifactId>gremlin-java</artifactId> - <version>2.2.0</version> + <version>2.0.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> @@ -1122,13 +1142,6 @@ <organization>SonarSource</organization> <timezone>+1</timezone> </developer> - <developer> - <id>david.gageot</id> - <name>David Gageot</name> - <email>david.gageot@sonarsource.com</email> - <organization>SonarSource</organization> - <timezone>+1</timezone> - </developer> </developers> <profiles> @@ -1226,7 +1239,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1239,7 +1252,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1252,7 +1265,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1266,7 +1279,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1279,7 +1292,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> </pluginExecutions> |