You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in a pom.xml mvn clean compile assembly:single fails.
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.465 s
[INFO] Finished at: 2022-11-04T12:45:40Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project shared-things: Could not resolve dependencies for project com.shared:shared-things:jar:1.0.0: Failure to find net.sourceforge.owlapi:org.semanticweb.hermit:bundle:1.4.5.519 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR]
so you can reproduce this -- i am using this repo with the patch below applied to attempt to pull hermit-reasoner from maven:
diff --git a/pom.xml b/pom.xml
index cb260c3..219769a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,6 +10,12 @@
<description>anything you need in a jar</description>
<dependencies>
+ <dependency>
+ <groupId>net.sourceforge.owlapi</groupId>
+ <artifactId>org.semanticweb.hermit</artifactId>
+ <version>1.4.5.519</version>
+ <type>bundle</type>
+ </dependency>
<!-- add your dependencies here -->
The text was updated successfully, but these errors were encountered:
with this
in a pom.xml
mvn clean compile assembly:single
fails.so you can reproduce this -- i am using this repo with the patch below applied to attempt to pull hermit-reasoner from maven:
The text was updated successfully, but these errors were encountered: