有谁知道RESTLET maven依赖是什么?
网站上没有任何条目有效。我不得不最终安装罐子才能使它工作。
答案 0 :(得分:29)
添加此回购:
<repositories>
<repository>
<id>maven-restlet</id>
<name>Public online Restlet repository</name>
<url>http://maven.restlet.org</url>
</repository>
</repositories>
然后在您的版本中包含依赖项:
<dependency>
<groupId>org.restlet.jee</groupId>
<artifactId>org.restlet</artifactId>
<version>${restlet.version}</version>
</dependency>
使用:
<properties>
<restlet.version>2.0.14</restlet.version>
</properties>
定义restlet版本或只是放置你喜欢的版本。希望它有所帮助!
答案 1 :(得分:1)
有时,不会自动下载maven依赖项。你必须使用mvn compile强制它。
以下是对使用以下依赖项的示例restful服务的引用:
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet</artifactId>
<version>2.1-RC2</version>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.simple</artifactId>
<version>2.1-RC2</version>
</dependency>
答案 2 :(得分:0)
使用this
中的给定镜像这些镜像是最新的,因此无需担心版本等等。
在maven安装位置编辑settings.xml
以添加镜像。
<settings>
<mirrors>
<mirror>
<id>mygrid-restlet</id>
<url>http://www.mygrid.org.uk/maven/restlet/maven.restlet.org</url>
<mirrorOf>maven-restlet</mirrorOf>
</mirror>
</mirrors>
</settings>
假设使用原始存储库的POM使用:
<repository>
<id>maven-restlet</id>
<name>Public online Restlet repository</name>
<url>http://maven.restlet.org</url>
</repository>
答案 3 :(得分:0)
<!-- https://mvnrepository.com/artifact/com.softlayer.api/softlayer-api-client -->
<dependency>
<groupId>com.softlayer.api</groupId>
<artifactId>softlayer-api-client</artifactId>
<version>0.1.0</version>
</dependency>