我正在研究grails项目。我通过命令create-pom com.evolution.edo对我的新项目进行了编组。它在项目目录中创建了pom.xml,但Netbeans没有看到该文件。 当我创建这个
public class Test {
private DateTime time;
}
当我尝试导入DateTime类时,Netbeans无法识别依赖项。我在pom.xml中有这个
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.1</version>
<type>jar</type>
</dependency>
我做错了吗?感谢任何建议......