diff options
Diffstat (limited to 'catalog-dao/pom.xml')
-rw-r--r-- | catalog-dao/pom.xml | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/catalog-dao/pom.xml b/catalog-dao/pom.xml index af4f76c4de..a6dd88a968 100644 --- a/catalog-dao/pom.xml +++ b/catalog-dao/pom.xml @@ -11,6 +11,9 @@ <version>1.2.0-SNAPSHOT</version> </parent> + <properties> + <sonar.skip>true</sonar.skip> + </properties> <dependencies> <!-- Common of SDC --> <dependency> @@ -35,16 +38,9 @@ </dependency> <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> - <version>${logback.version}</version> - <scope>provided</scope> - </dependency> - - <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> - <version>${elastic-search.version}</version> + <version>${elastic-search.version}</version> <scope>provided</scope> </dependency> @@ -90,18 +86,17 @@ </dependency> <dependency> - <groupId>com.fasterxml.jackson.core</groupId> + <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> - <scope>provided</scope> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>${slf4j-api.version}</version> - <scope>provided</scope> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>${jackson.version}</version> </dependency> + <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> @@ -118,7 +113,6 @@ <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> - <version>${mockito.version}</version> <scope>test</scope> </dependency> @@ -167,6 +161,12 @@ <!-- TEST --> <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> @@ -254,8 +254,7 @@ <scope>provided</scope> </dependency> <!-- CASSANDRA END --> - - </dependencies> + </dependencies> <build> |