Skip to content

Commit

Permalink
Try fixing conflicting group IDs for ejml update
Browse files Browse the repository at this point in the history
  • Loading branch information
imagejan authored Nov 2, 2023
1 parent ce360aa commit cc6e5ae
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1630,7 +1630,9 @@

<!-- Ejml - https://github.com/lessthanoptimal/ejml -->
<ejml.version>0.41</ejml.version>
<com.googlecode.efficient-java-matrix-library.ejml.version>${ejml.version}</com.googlecode.efficient-java-matrix-library.ejml.version>
<org.ejml.ejml-all.version>${ejml.version}</org.ejml.ejml-all.version>
<!-- NB: older versions had a different groupId; this should be removed in a future pom-scijava release. -->
<com.googlecode.efficient-java-matrix-library.ejml.version>0.25</com.googlecode.efficient-java-matrix-library.ejml.version>

<!-- Error Prone - https://errorprone.info/ -->
<error_prone.version>2.19.0</error_prone.version>
Expand Down Expand Up @@ -4899,9 +4901,9 @@

<!-- Ejml - https://github.com/lessthanoptimal/ejml -->
<dependency>
<groupId>com.googlecode.efficient-java-matrix-library</groupId>
<artifactId>ejml</artifactId>
<version>${com.googlecode.efficient-java-matrix-library.ejml.version}</version>
<groupId>org.ejml</groupId>
<artifactId>ejml-all</artifactId>
<version>${org.ejml.ejml-all.version}</version>
</dependency>

<!-- Error Prone - https://errorprone.info/ -->
Expand Down

0 comments on commit cc6e5ae

Please sign in to comment.