我刚接触java编程,并且在将syntethica LaF添加到我的Maven项目时遇到了一些问题。我正在使用Netbeans IDE 7.2.1。我想,syntethica.jar应该出现在依赖列表中,对吧?我试图手动将JAR文件添加到本地存储库中,它似乎已成功添加,但它不会出现在依赖项列表中。如何将syntethica.jar添加到我的项目中以便我可以使用它?
答案 0 :(得分:0)
您的pom.xml
应该有一个依赖关系组。类似的东西:
<dependency>
<groupId>something...synthetica</groupId>
<artifactId>somethingother...synthetica</artifactId>
<version>1.2.3.4.5.6</version>
</dependency>
我在中心找不到synthetica,从你提到localrepository来判断,你应该
<repository>...
干杯,