Skip to content

Commit

Permalink
Resolving dependency convergence issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-kyosev-gs committed Feb 11, 2022
1 parent 954570c commit 815f1fc
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 1 deletion.
5 changes: 5 additions & 0 deletions legend-sdlc-entity-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,10 @@
<artifactId>maven-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
7 changes: 7 additions & 0 deletions legend-sdlc-generation-file-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-external-format-protobuf</artifactId>
Expand All @@ -138,6 +144,7 @@
<artifactId>legend-engine-external-format-rosetta</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-external-format-jsonSchema</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions legend-sdlc-generation-model-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions legend-sdlc-generation-service-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions legend-sdlc-version-package-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@
<artifactId>maven-compat</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<scope>test</scope>
</dependency>
<!-- TEST -->
</dependencies>
</project>
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@
<json-smart.version>2.4.7</json-smart.version>
<javassist.version>3.28.0-GA</javassist.version>
<junit.version>4.13.1</junit.version>
<apache.maven.version>3.6.2</apache.maven.version>
<apache.maven.version>3.8.4</apache.maven.version>
<pac4j.version>3.9.0</pac4j.version>
<pac4j.jax-rs.version>3.0.3</pac4j.jax-rs.version>
<slf4j.version>1.7.25</slf4j.version>
<snakeyaml.version>1.27</snakeyaml.version>
<freemarker.version>2.3.30</freemarker.version>
Expand Down Expand Up @@ -1125,6 +1126,12 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${apache.maven.version}</version>
<exclusions>
<exclusion>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -1290,6 +1297,12 @@
<version>${pac4j.version}</version>
</dependency>

<dependency>
<groupId>org.pac4j.jax-rs</groupId>
<artifactId>core</artifactId>
<version>${pac4j.jax-rs.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand Down

0 comments on commit 815f1fc

Please sign in to comment.