igr / julian-day

Precise Julian Day Java library
BSD 2-Clause "Simplified" License
4 stars 0 forks source link

Could not find artifact org.jodd:jodd-julian-day:jar:7.0.0 in central #2

Closed zabetak closed 5 months ago

zabetak commented 5 months ago

I tried adding the new jodd-julian-day dependency to Apache Hive but it seems that the latter is not (yet?) in maven central.

[ERROR] Failed to execute goal on project hive-exec: Could not resolve dependencies for project org.apache.hive:hive-exec:jar:4.1.0-SNAPSHOT: Could not find artifact org.jodd:jodd-julian-day:jar:7.0.0 in central (https://repo.maven.apache.org/maven2) -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
igr commented 5 months ago

Sorry, it was an error in the documentation. Use:

<dependency>
    <groupId>org.jodd</groupId>
    <artifactId>julian-day</artifactId>
    <version>7.0.0</version>
</dependency>

(Fixed in README as well.)