Closed arcusfelis closed 9 years ago
Have you done
# Install kiselev-dv/osm-doc-java
mvn compile install -f osm-doc-java/pom.xml
before?
Good afternoon,
I also have the same issue. Any idea what to do? I followed these steps:
mvn compile install -f osm-doc-java/pom.xml
mvn -Dmaven.test.skip=true compile install -f ExternalSorting/pom.xml
mvn clean compile assembly:single -f Gazetteer/pom.xml
Thanks in advance.
Could you give me maven logs for
mvn compile install -f osm-doc-java/pom.xml
mvn -Dmaven.test.skip=true compile install -f ExternalSorting/pom.xml
mvn clean compile assembly:single -f Gazetteer/pom.xml
Thanks for helping. Here it is:
The problem is:
Current branch of osm-doc-java is 1.0-SNAPSHOT
but Gazetteer looking for osm-doc-java 0.11
I added public repository and hope it will be much more easier to use.
You could use latest version 1.5-SNAPSHOT
or you could checkout Gazetteer-1.4
and edit pom.xml add
<repository>
<id>myMavenRepo.read</id>
<url>https://mymavenrepo.com/repo/rRfVAWWQw6RiXxhmZkot/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
to <repositories>
section
Yes, that solved! Thank you a lot!