aspose.words - "Failure to find com.aspose:aspose-email:jar:5.3.0.0" when running GroupDocs sample "Java Viewer - Sample Dropwizard" -
i'm trying run sample "groupdocs java viewer - sample dropwizard" download here
it need these jar files:
- aspose-email-5.3.0.0.jar
- aspose-imaging-2.9.0.jar
- aspose-words-15.6.0.jar
- aspose-slides-15.5.1.jar
i can not find them here maven.aspose.com
i found jars jdk16 still have same error:
failed execute goal on project groupdocs-viewer-dropwizard: not resolve dependencies project com.groupdocs.samples:groupdocs-viewer-dropwizard:jar:2.12.0: following artifacts not resolved: com.aspose:aspose-email:jar:5.3.0.0, com.aspose:aspose-imaging:jar:2.9.0, com.aspose:aspose-slides:jar:15.5.1, com.aspose:aspose-words:jar:15.6.0: failure find com.aspose:aspose-email:jar:5.3.0.0 in http://repository.springsource.com/maven/bundles/external cached in local repository, resolution not reattempted until update interval of com.springsource.repository.bundles.external has elapsed or updates forced -> [help 1]
you can try use maven repositories
<repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>libs-release</name> <url>http://maven.aspose.com/artifactory/libs-release</url> </repository> <repository> <snapshots /> <id>snapshots</id> <name>libs-snapshot</name> <url>http://maven.aspose.com/artifactory/libs-snapshot</url> </repository>
also can use aspose maven page find library , correct code connect library http://maven.aspose.com/repository/webapp/home.html
for example aspose.email can connect project code
<dependency> <groupid>com.aspose</groupid> <artifactid>aspose-email</artifactid> <version>5.3.0</version> <classifier>jdk16</classifier> </dependency>
Comments
Post a Comment