代码之家  ›  专栏  ›  技术社区  ›  HimanshuR

没有使用扁平pom?

  •  7
  • HimanshuR  · 技术社区  · 10 年前

    这是一个多模块的maven项目。我已经在我的父pom中包含了flatten maven插件

    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>flatten-maven-plugin</artifactId>
        <version>1.0.0-beta-2</version>
        <configuration>
        </configuration>
    

    在父pom中定义了属性scl_version,并在子pom中使用了${scl_version}。值为 0.0.1 .

    当我跑步时 mvn展平:展平

    它会生成警告: [警告]“version”包含表达式,但应为常量。

    在所有模块(包括父模块和所有子模块)中都会创建一个扁平的pom。

    压扁的pom具有中属性的值 版本 子pom的标签。但当我给出mvn安装时,它仍然发出警告,版本应该是恒定的,但这是一个表达式。

    http://mojo.codehaus.org/flatten-maven-plugin/plugin-info.html

    但文件显示:

    该MOJO实现了生成扁平POM的目标扁平化 并可能更新POM文件 MavenProject的文件指向扁平的POM,而不是 原始pom.xml文件。扁平POM是 原始POM,重点仅包含重要信息 因此 开发人员维护和构建项目工件 剥离。

    因此,当我安装mvn时,它不会产生警告。

    mvn-install和mvn-flatted:flatten都会生成以下警告:

    [警告]“version”包含表达式,但应为常量。

    我错过了什么,是不是没有使用flatted-pm.xml。 我需要指定什么吗。

    父POM:

    <?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.a.b</groupId>
    <artifactId>ABC</artifactId>
    <version>0.0.1</version>
    <packaging>pom</packaging>
    <name>ABC</name>
    <modules>
        <module>Resources</module>
        <module>ResourceTree</module>
        <module>Service</module>
        <module>Transport</module>
    <module>Branding</module>
    

    财产标记从这里开始

    <scl_version>0.0.1</scl_version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
    <karaf.deploy.build.folder>${env.KARAF_BASE}/deploy</karaf.deploy.build.folder>
    

    属性标记在此结束

    <profiles>
        <profile>
            <id>code_coverage</id>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-compiler-plugin</artifactId>
                        <version>${maven-compiler-plugin.version}</version>
                        <configuration>
                            <source>1.7</source>
                            <target>1.7</target>
                        </configuration>
                    </plugin>
                    <plugin>
                        <groupId>org.jacoco</groupId>
                        <artifactId>jacoco-maven-plugin</artifactId>
                        <version>0.7.0.201403182114</version>
                        <executions>
                            <execution>
                                <id>default-instrument</id>
                                <goals>
                                    <goal>instrument</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <version>2.12.2</version>
                        <configuration>
                            <systemPropertyVariables>
                                <jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
                            </systemPropertyVariables>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
    
    <build>
        <plugins>
        <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>flatten-maven-plugin</artifactId>
        <version>1.0.0-beta-2</version>
        <configuration>
        <flattenMode>ossrh</flattenMode>
        <updatePomFile>true</updatePomFile>
        </configuration>
        <executions>
          <!-- enable flattening -->
          <execution>
            <id>flatten</id>
            <phase>process-resources</phase>
            <goals>
              <goal>flatten</goal>
            </goals>
          </execution>
          <!-- ensure proper cleanup -->
          <execution>
            <id>flatten.clean</id>
            <phase>clean</phase>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    
    
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven-compiler-plugin.version}</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
        </dependency>
        <dependency>
            <groupId>org.jacoco</groupId>
            <artifactId>org.jacoco.agent</artifactId>
            <classifier>runtime</classifier>
            <version>0.7.0.201403182114</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    </project>
    

    生成的扁平pom:

    <?xml version="1.0" encoding="UTF-8"?>
    <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.a.b</groupId>
      <artifactId>ABC</artifactId>
      <version>0.0.1</version>
      <packaging>pom</packaging>
      <name>ABC</name>
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.11</version>
          <scope>compile</scope>
        </dependency>
      </dependencies>
      <repositories>
        <repository>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <id>central</id>
          <name>Maven Repository Switchboard</name>
          <url>http://repo1.maven.org/maven2</url>
        </repository>
      </repositories>
    </project>
    

    属性用于grand-grand-child pom(对于trail,如果在没有警告的情况下成功,我可以在任何地方使用它):

    <groupId>org.a.b</groupId>
    <artifactId>CD<artifactId>
    <version>${scl_version}</version>
    <packaging>bundle</packaging>
    
    <name>CD</name>
    <description>OSGi bundle project.</description>
    

    除此之外,它还有捆绑插件依赖插件和一些依赖项。在这个孩子的扁平pom中,这个版本被解析为0.0.1

    1 回复  |  直到 10 年前
        1
  •  15
  •   HimanshuR    10 年前

    我给这个插件的开发者发了邮件,他的回复是:

    警告来自Maven,基于 原件 pom.xml文件 在Maven开始执行之前,将创建一个构建计划,并将pom.xml 导致此警告。flatten maven插件启动 稍后在生成展平的pom.xml的过程中,确保 这是正在安装/部署的文件。您的问题无法通过 flatten maven插件,不会在maven Core中修复(警告 有充分的理由)。

    所以,它很好地回答了这个问题。