我在哪里可以下载最新的GWT-Bootstrap JAR?

时间:2013-06-23 03:12:26

标签: maven gwt jar gwt-bootstrap

website他们声称最新版本为2.3.2.0-SNAPSHOT,但我无法在任何地方找到JAR 。它不在任何回购(Maven Central等),没有在他们的网站或其他地方的下载页面。如果从他们的GitHub git repo中检出master分支,它只包含source,但没有libs。

1 个答案:

答案 0 :(得分:4)

因为它是快照版本,所以它不在中央存储库中,而是在sonatype快照中:

https://oss.sonatype.org/content/repositories/snapshots/com/github/gwtbootstrap/gwt-bootstrap/2.3.2.0-SNAPSHOT/

如果您希望maven项目从此位置下载,则必须将存储库添加到您的pom文件中:

<repositories>
   <repository>
     <id>sonatype</id>
     <url>http://oss.sonatype.org/content/repositories/snapshots</url>
     <snapshots><enabled>true</enabled></snapshots>
     <releases><enabled>false</enabled></releases>
   </repository>
</repositories>