Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maven failure #12

Open
justin2004 opened this issue Nov 4, 2022 · 1 comment
Open

maven failure #12

justin2004 opened this issue Nov 4, 2022 · 1 comment

Comments

@justin2004
Copy link

justin2004 commented Nov 4, 2022

with this

    <dependency>
          <groupId>net.sourceforge.owlapi</groupId>
            <artifactId>org.semanticweb.hermit</artifactId>
              <version>1.4.5.519</version>
                <type>bundle</type>
            </dependency>

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 -->
 
@ignazio1977
Copy link

ignazio1977 commented Nov 5, 2022

Try

  <dependency>
      <groupId>net.sourceforge.owlapi</groupId>
        <artifactId>org.semanticweb.hermit</artifactId>
          <version>1.4.5.519</version>
        </dependency>

There is no bundle typed release for that HermiT fork.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants