Skip to content

Commit

Permalink
fixing bad dependencies in pom (#26472)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrizzio-dotCMS authored Oct 19, 2023
1 parent 1b98197 commit 486b58e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/dotcms-cli/api-data-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<testcontainers.version>1.17.6</testcontainers.version>
<test.failure.ignore>false</test.failure.ignore>
<maven.plugin.jar.version>3.3.0</maven.plugin.jar.version>
<google.findbugs.version>3.0.2</google.findbugs.version>
<jackson.module.model.version>1.2.2</jackson.module.model.version>
<jackson.datatype.guava.version>2.13.3</jackson.datatype.guava.version>
<docker.output.image.name>dotcms/dotcms-test</docker.output.image.name>
Expand Down Expand Up @@ -50,6 +49,7 @@
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>${immutables.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -63,6 +63,7 @@
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${google.findbugs.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
Expand Down
15 changes: 15 additions & 0 deletions tools/dotcms-cli/cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,21 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>${immutables.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${google.findbugs.version}</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down
1 change: 1 addition & 0 deletions tools/dotcms-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>2.9.1.Final</quarkus.platform.version>
<jreleaser-plugin.version>1.8.0</jreleaser-plugin.version>
<google.findbugs.version>3.0.2</google.findbugs.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 486b58e

Please sign in to comment.