在我的maven项目中使用syntethica(Netbeans IDE 7.2.1)

时间:2012-10-31 19:14:48

标签: java maven netbeans look-and-feel

我刚接触java编程,并且在将syntethica LaF添加到我的Maven项目时遇到了一些问题。我正在使用Netbeans IDE 7.2.1。我想,syntethica.jar应该出现在依赖列表中,对吧?我试图手动将JAR文件添加到本地存储库中,它似乎已成功添加,但它不会出现在依赖项列表中。如何将syntethica.jar添加到我的项目中以便我可以使用它?

1 个答案:

答案 0 :(得分:0)

您的pom.xml应该有一个依赖关系组。类似的东西:

<dependency>
    <groupId>something...synthetica</groupId>
    <artifactId>somethingother...synthetica</artifactId>
    <version>1.2.3.4.5.6</version>
</dependency>

我在中心找不到synthetica,从你提到localrepository来判断,你应该

  • 将groupId,artifactId和version与localrepository结构和
  • 相匹配
  • 将您的localrepository添加为POM中的<repository>...

干杯,