Resolving broken source in Maven central repository

Viewed 375

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.

1 Answers
Related