Eric
Eric

Reputation: 476

Resolving broken source in Maven central repository

I need two dependencies from the same organization, but it seems the link to their source is broken.

First: https://mvnrepository.com/artifact/org.moxieapps.gwt/uploader

Second: https://mvnrepository.com/artifact/org.moxieapps.gwt/highcharts

<dependency>
    <groupId>org.moxieapps.gwt</groupId>
    <artifactId>uploader</artifactId>
    <version>1.1.0</version>
</dependency>
<dependency>
    <groupId>org.moxieapps.gwt</groupId>
    <artifactId>highcharts</artifactId>
    <version>1.7.0</version>
</dependency>
[ERROR] Failed to execute goal on project ctap-web: Could not resolve dependencies 
for project com.test:test-web:war:1.0.0-SNAPSHOT: The following artifacts could 
not be resolved: org.moxieapps.gwt:uploader:jar:1.1.0, 
org.moxieapps.gwt:highcharts:jar:1.7.0: Could not find artifact 
org.moxieapps.gwt:uploader:jar:1.1.0 in central 
(https://repo.maven.apache.org/maven2) -> [Help 1]
[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

I've downloaded the source from Sourceforge and placed it in .m2/repository/org/moxieapps/gwt/ but Maven still tries to download it from the central repo.

Upvotes: 3

Views: 536

Answers (1)

J Fabian Meier
J Fabian Meier

Reputation: 35825

The jar org.moxieapps.gwt:uploader:jar:1.1.0 is not in MavenCentral, which you can see here:

https://search.maven.org/search?q=g:org.moxieapps.gwt%20AND%20a:uploader

Note that mvnrepository (the links you provided) have nothing to do with MavenCentral.

Upvotes: 1

Related Questions