Questions tagged «playn»

14
无法执行目标org.apache.maven.plugins:maven-surefire-plugin:2.10:test
我已经在互联网上搜寻了将近五天的时间,以寻求解决此问题的方法,但是我似乎无法自己找到并解决它,主要是因为我对Maven和PlayN都很陌生,所以我不确定我到底在看什么 但是,显然正在努力建立核心。似乎它无法下载“工件过滤器”,并且无法运行Surefire的测试。但是,尽管我一直在尝试研究诸如疯狂之类的东西,但我只是在猜测我不太了解的事物。来自经验丰富的人们的任何帮助将非常非常感谢。我对此一无所知。 [INFO] Building Synthesis Core 1.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ synthesis-core --- [INFO] [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ synthesis-core --- [debug] execute contextualize [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] skip non existing resourceDirectory C:\Users\Josiah\synthesis\core\src\main\resources [INFO] [INFO] --- maven-compiler-plugin:2.3:compile …
132 maven  maven-2  playn 

24
缺少工件com.sun:tools:jar
我一直在遵循入门教程,但是在使用Maven导入playn项目后陷入困境。我正在使用在64位Windows 7上运行的Eclipse Indigo。 所有导入的项目都具有相同的错误: Missing Artifact com.sun:tools:jar in all the pom.xml files. 经过几个小时的搜索论坛,我尝试了: 安装最新的Java 1.6.029更改JAVA_HOME环境变量以指向\program files\Java\jdk1.6_029 更改Eclipse Java首选项以使用JRE jdk1.6_029。 我真的很想尝试playn,但是为什么有几篇文章我似乎找不到解决方案的共识答案。有人说Sun从64位jdk中删除了一些东西,其他人说您必须编辑xml文件,许多人说您已更改JAVA_HOME,另一些人说您必须更改Eclipse的VM选项。 因为我在这里没有特别奇怪的设置,所以对清除此问题的任何帮助将不胜感激,并且可能对许多人有用。 (编辑)这是第一个项目中的pom.xml。Eclipse在该行中指出错误: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.googlecode.playn</groupId> <artifactId>playn-project</artifactId> <version>1.1-SNAPSHOT</version> </parent> <artifactId>playn-android</artifactId> <name>PlayN Android</name> <packaging>jar</packaging> <repositories> </repositories> <dependencies> <dependency> <groupId>com.googlecode.playn</groupId> <artifactId>playn-core</artifactId> <version>${project.version}</version> </dependency> <!-- needed because Android uses …
90 java  maven  playn 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.