早上好,我的问题的原因是一个错误,告诉我neatbens javaee-endorsed-api-7.0 not found 我试图找到有关如何解决的信息,但我发现信息是6.0,但它适用于我可以有人告诉我如何解决这个问题或提供信息,你可以找到信息我正在创建一个web项目 java web jee 7 neatbens的版本是8.2 < / p>
我正在处理应用程序Web项目
< target name = "-init-taskdefs" >
<
fail unless = "libs.CopyLibs.classpath" >
The libs.CopyLibs.classpath property is not set up.
This property must point to
org - netbeans - modules - java - j2seproject - copylibstask.jar file which is part of NetBeans IDE installation and is usually located at &
lt;
netbeans_installation & gt;
/java<version>/ant / extra folder.
Either open the project in the IDE and make sure CopyLibs library
exists or setup the property manually.For example like this:
ant - Dlibs.CopyLibs.classpath = a / path / to / org - netbeans - modules - java - j2seproject - copylibstask.jar <
/fail> <
taskdef classpath = "${libs.CopyLibs.classpath}"
resource = "org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml" / >
<
/target>
&#13;
错误
ant -f&#34; G:\ Mis Documentos \ NetBeansProjects \ WebServiceSicb&#34; -Dnb.internal.action.name = build -DforceRedeploy = false&#34; -Dbrowser.context = G:\ Mis Documentos \ NetBeansProjects \ WebServiceSicb&#34; DIST G:\ Mis Documentos \ NetBeansProjects \ WebServiceSicb \ nbproject \ build-impl.xml:797:未设置libs.CopyLibs.classpath属性。 这个属性必须指向 org-netbeans-modules-java-j2seproject-copylibstask.jar文件是其中的一部分 NetBeans IDE安装的位置通常位于 / java / ant / extra文件夹。 在IDE中打开项目并确保CopyLibs库 手动存在或设置属性。例如这样: ant -Dlibs.CopyLibs.classpath = a / path / to / org-netbeans-modules-java-j2seproject-copylibstask.jar BUILD FAILED(总时间:0秒)
块引用
答案 0 :(得分:12)
我有同样的问题。只需转到工具->插件->可用插件---->搜索EJB和Ear并安装它。问题将消失。
答案 1 :(得分:3)
您的帖子中缺少信息请添加更多详细信息,否则如果您正在使用maven项目,请将此块添加到您的pom.xml中:
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
</dependency>
否则下载jar文件并将其添加到类路径中:http://www.java2s.com/Code/Jar/j/Downloadjavaeeendorsedapi70jar.htm