Maven不会因引入的编译错误而失败

时间:2012-06-14 11:08:10

标签: android maven compilation compiler-errors jenkins

将我的Android项目移至Maven / Jenkins并正在探索构建/编译/测试过程。

问题: 我在java代码中引入了一个简单的编译错误,但是当我运行mvn clean install package时,我获得了一个构建成功。只有当我将应用程序部署到我的设备时,它才会崩溃并失败。

我的POM有问题吗?

PS。我有XXXXX了一些信息。别担心。

    <?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>

  <parent>
    <groupId>xxxxx</groupId>
    <artifactId>xxxxxx</artifactId>
    <version>1.0.0</version>
  </parent>

   <groupId>xxxxx</groupId>
    <artifactId>xxxx</artifactId>
    <version>1.0.0</version>
    <packaging>apk</packaging>
    <name>Android App</name>

    <dependencies>
        <dependency>
            <groupId>com.google.android</groupId>
            <artifactId>android</artifactId>
            <version>4.0.1.2</version>
            <scope>provided</scope>
        </dependency>

       <dependency>
            <groupId>com.actionbarsherlock</groupId>
            <artifactId>library</artifactId>
            <version>4.0.0</version>
            <type>apklib</type>
        </dependency>   
    </dependencies>

    <build>
    <plugins>
      <plugin>
        <groupId>com.jayway.maven.plugins.android.generation2</groupId>
        <artifactId>android-maven-plugin</artifactId>
        <configuration>
          <androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile>
          <assetsDirectory>${project.basedir}/assets</assetsDirectory>
          <resourceDirectory>${project.basedir}/res</resourceDirectory>
          <nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory>
          <sdk>
            <platform>15</platform>
            <path>/Users/aidenfry/android-sdks</path>
          </sdk>
          <undeployBeforeDeploy>true</undeployBeforeDeploy>
        </configuration>
        <extensions>true</extensions>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

1 个答案:

答案 0 :(得分:1)

我怀疑,你没有看到错误的原因很可能是因为maven甚至没有首先编写你的课程。

Maven有各种约定,其中之一是它希望您的源代码位于src/main/java下。

我打赌您刚刚将上述pom.xml放入项目根区域并运行mvn clean install。 Maven很乐意运行它,但由于你可能已经将源文件保留在默认的IDE位置,maven只是跳过它。看看你的目标目录,你会发现它没有为你编译任何类

您有两个选择:

  1. 在上面pom中的<build>标记内的某处添加: $ {BASEDIR} / SRC
  2. 重新排列源文件,使其遵循src/main/java结构。
  3. 就个人而言,我会选择2号。

    P.S,也有src/main/test,测试类应该去那里:)

    您可以阅读有关pom文件here

    的配置的更多信息