ernestojimenezruiz / logmap-matcher

LogMap: An Ontology Alignment and Alignment Repair System
Apache License 2.0
117 stars 31 forks source link

added jitpack version of google-api-translate-java #30

Closed sven-h closed 1 year ago

sven-h commented 2 years ago

Hi Ernesto,

I would like to use some logmap parts in MELT. Due to the fact that it is not yet in Maven Central I tried it with JitPack. Unfortunately it didn't worked out because of the google-api dependency (see here and the corresponding log). I searched for the dependency (which is not in central again) and found it in github as well.

Thus I changed you pom.xml file to include the jitpack repository and the (hopefully correct) version of the library (it should be the last 0.97-SNAPSHOT version). Can you check if the translation feature of logmap is still working with it?

If yes, you can merge it and all maven users will be able to include logmap in their projects via

<dependency>
    <groupId>com.github.ernestojimenezruiz</groupId>
    <artifactId>logmap-matcher</artifactId>
    <version>Tag</version>
</dependency>

together with

<repositories>
  <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
  </repository>
</repositories>

Best regards Sven

ernestojimenezruiz commented 1 year ago

Many thanks!