Skip to content

Commit

Permalink
pom: Added develop dependencies to review #TASK-2095
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfeSanahuja committed Oct 19, 2023
1 parent 31b31a0 commit ff974bf
Show file tree
Hide file tree
Showing 6 changed files with 131 additions and 2 deletions.
13 changes: 13 additions & 0 deletions cellbase-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,19 @@
<scope>test</scope>
</dependency>

<!--TODO Review -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<scope>test</scope>
</dependency>


</dependencies>

<build>
Expand Down
27 changes: 27 additions & 0 deletions cellbase-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,33 @@
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>

<!--TODO Review -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>

25 changes: 25 additions & 0 deletions cellbase-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,31 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>

<!--TODO Review -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
27 changes: 27 additions & 0 deletions cellbase-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,5 +159,32 @@
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>

<!--TODO Review -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util-ajax</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
27 changes: 27 additions & 0 deletions cellbase-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,33 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>

<!--TODO Review -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-multipart</artifactId>
</dependency>

</dependencies>

<build>
Expand Down
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<junit.jupiter.version>5.5.2</junit.jupiter.version>
<jacoco.version>0.8.8</jacoco.version>
<jetty.version>9.4.17.v20190418</jetty.version>
<jwt.version>0.11.5</jwt.version>
<jjwt.version>0.11.5</jjwt.version>
<swagger-annotations.version>1.6.5</swagger-annotations.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<poi.version>4.1.2</poi.version>
Expand All @@ -50,7 +50,6 @@
<grpc.version>1.48.0</grpc.version>
<commons-lang.version>2.4</commons-lang.version>
<commons-io.version>2.4</commons-io.version>
<jjwt.version>0.11.5</jjwt.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<jakarta.ws.rs-api.version>2.1.6</jakarta.ws.rs-api.version>
<commons-collections4.version>4.4</commons-collections4.version>
Expand All @@ -62,6 +61,7 @@
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<swagger-jersey2-jaxrs.version>1.6.5</swagger-jersey2-jaxrs.version>
</properties>
<scm>
<url>https://github.com/opencb/cellbase</url>
Expand Down Expand Up @@ -417,6 +417,16 @@
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson-asl.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
<version>${swagger-jersey2-jaxrs.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit ff974bf

Please sign in to comment.