pet*_*ter 5 java xml android build-script maven
我想在maven中使用一个简单的android hello world程序.这是我的pom.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.example.androidmaven</groupId>
<artifactId>gs-maven-android</artifactId>
<version>0.1.0</version>
<packaging>apk</packaging>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.8.2</version>
<configuration>
<sdk>
<platform>19</platform>
</sdk>
<deleteConflictingFiles>true</deleteConflictingFiles>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
Run Code Online (Sandbox Code Playgroud)
得到这个错误
[ERROR] Failed to execute goal com.jayway.maven.plugins.android.generation2:andr
oid-maven-plugin:3.8.2:generate-sources (default-generate-sources) on project gs
-maven-android: Execution default-generate-sources of goal com.jayway.maven.plug
ins.android.generation2:android-maven-plugin:3.8.2:generate-sources failed: Erro
r reading D:\adt-bundle-windows-x86-20130522\sdk\tools\tools\source.properties -
> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutio
nException
Run Code Online (Sandbox Code Playgroud)
从詹金斯运行时我也遇到同样的错误。请参考下面
[ERROR] Failed to execute goal com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.8.2:generate-sources (default-generate-sources) on project helloflashlight: Execution default-generate-sources of goal com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.8.2:generate-sources failed: Error reading /home/iosmia/tools/android-sdk-linux/tools/source.properties -> [Help 1]
Run Code Online (Sandbox Code Playgroud)
注意:我能够使用命令行成功运行以下命令
mvn install
Run Code Online (Sandbox Code Playgroud)
更新:
我可以意识到读取文件的权限如下所示:
iosmia@iosmia-linux:~/tools/android-sdk-linux/tools$ ls -l source.properties
-rw-rw---- 1 iosmia iosmia 70 Mar 22 01:47 source.properties
Run Code Online (Sandbox Code Playgroud)
这意味着,jenkins 是“其他”用户,因此它无法读取该文件。在向所有人授予读取权限(如下所示)后,我能够成功构建。
iosmia@iosmia-linux:~/tools/android-sdk-linux/tools$ chmod 777 source.properties
iosmia@iosmia-linux:~/tools/android-sdk-linux/tools$ ls -l source.properties
-rwxrwxrwx 1 iosmia iosmia 70 Mar 22 01:47 source.properties
Run Code Online (Sandbox Code Playgroud)