0

我是 Java 编程新手,在将 syntethica LaF 添加到我的 Maven 项目时遇到了一些问题。我正在使用 Netbeans IDE 7.2.1。我认为 syntethica.jar 应该出现在依赖项列表中,对吧?我尝试手动将 JAR 文件添加到本地存储库中,并且似乎添加成功,但它没有出现在依赖项列表中。如何将 syntethica.jar 添加到我的项目中以便我可以使用它?

4

1 回答 1

0

您应该在pom.xml. 就像是:

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

我在中央找不到 synthena,从你提到 localrepository 来看,你应该

  • 将 groupId、artifactId 和 version 匹配到您的 localrepository 结构和
  • 将您的本地存储库添加为<repository>...您的 POM

干杯,

于 2012-10-31T19:28:20.340 回答