Boz*_*zho 10 java maven-2 apache-commons
commons-lang 3.0仍然是测试版,但它可以在一些maven存储库中找到(我不能)
小智 14
添加存储库(POM):
<repositories>
<repository>
<id>snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
</repository>
</repositories>
Run Code Online (Sandbox Code Playgroud)
添加依赖:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Run Code Online (Sandbox Code Playgroud)
您可以在http://repository.apache.org/snapshots/org/apache/commons/commons-lang3/3.0-SNAPSHOT/上使用快照.
更新:它已经发布,因此它现在位于中央maven存储库中.