Maven配置文件执行

时间:2013-05-09 14:59:02

标签: maven maven-profiles

我遇到了问题,直到现在才弄清楚原因。

我有一个有几个模块的maven项目。其中一个模块是webservices客户端。

因此,在开发期间,当在maven中运行安装时,它需要访问本地服务器以生成客户端。当我运行插件来生成项目的发布时,客户端应该指向生产服务器。

为此,我将其设置为关键属性$ {server.address},用于在生成客户端时指向服务器。有一个配置文件,在激活时,此键属性会将地址重写为生产服务器。

发生了什么事?运行mvn install正确生成,即指向本地服务器。当我使用命令mvn release生成发布时:prepare -B release:perform -Denv = prd不会重写变量。

奇怪的是,如果我运行mvn install -Denv = prd,它会正确生成,指向生产服务器。

有人可以在发布周期中给我一些改变工作的提示吗?

<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>groupId</groupId>
    <artifactId>artifactId</artifactId>
    <version>0.0.2-SNAPSHOT</version>
    <packaging>jar</packaging>

    <properties>
        <server.address>http://localhost:8080</server.address>
    </properties>

    <profiles>
        <profile>
            <id>prd</id>
            <activation>
                <property>
                    <name>env</name>
                    <value>prd</value>
                </property>
            </activation>
            <properties>
                <server.address>http://srvprd009:8080</server.address>
            </properties>
          </profile>
    </profiles>

    <build>
        <sourceDirectory>src/main/java</sourceDirectory>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <testSourceDirectory>src/test/java</testSourceDirectory>
        <testResources>
            <testResource>
                <directory>src/test/resources</directory>
            </testResource>
        </testResources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-eclipse-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.cxf</groupId>
                <artifactId>cxf-codegen-plugin</artifactId>
                <executions>
                    <execution>
                        <id>generate-client</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <sourceRoot>src/main/gen</sourceRoot>
                            <wsdlOptions>
                                <wsdlOption>
                                    <wsdl>${server.address}/services/utilities?wsdl</wsdl>
                                    <extraargs>
                                        <extraarg>-p</extraarg>
                                        <extraarg>${project.package}</extraarg>
                                        <extraarg>-impl</extraarg>
                                        <extraarg>-verbose</extraarg>
                                        <extraarg>-frontend</extraarg>
                                        <extraarg>jaxws21</extraarg>
                                        <extraarg>-xjc-XhashCode</extraarg>
                                        <extraarg>-xjc-Xequals</extraarg>
                                    </extraargs>
                                </wsdlOption>
                            </wsdlOptions>
                        </configuration>
                        <goals>
                            <goal>wsdl2java</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.cxf</groupId>
                        <artifactId>cxf-rt-frontend-jaxws</artifactId>
                        <version>${cxf.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.cxf</groupId>
                        <artifactId>cxf-rt-transports-http</artifactId>
                        <version>${cxf.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.jvnet.jaxb2_commons</groupId>
                        <artifactId>jaxb2-basics</artifactId>
                        <version>0.6.4</version>
                    </dependency>
                </dependencies>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <version>${maven-clean-plugin.version}</version>
                <configuration>
                    <filesets>
                        <fileset>
                            <directory>src/main/gen</directory>
                            <includes>
                                <include>**/*.*</include>
                            </includes>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>${build-helper-maven-plugin.version}</version>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>src/main/gen</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>ts-core</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>corporate-tools.fragmental.security</groupId>
            <artifactId>basic-ws-client</artifactId>
            <version>${fragmental.version}</version>
        </dependency>

        <!-- JEE -->
        <dependency>
            <groupId>javax.j2ee</groupId>
            <artifactId>j2ee</artifactId>
            <version>1.4</version>
            <scope>provided</scope>
        </dependency>

        <!-- JAX-WS -->
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <version>${jaxws.version}</version>
        </dependency>
        <dependency>
            <groupId>javax.xml.ws</groupId>
            <artifactId>jaxws-api</artifactId>
            <version>${jaxws.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.xml.soap</groupId>
                    <artifactId>saaj-api</artifactId>
                </exclusion>
                <exclusion>
                    <artifactId>jsr250-api</artifactId>
                    <groupId>javax.annotation</groupId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
</project>

3 个答案:

答案 0 :(得分:1)

发布插件有一种奇怪的(对我来说))使用特殊属性并将它们转发到执行的真实目标。如果您使用普通的配置文件参数-Pprod,这将起作用。但是,您在mvn调用时添加的大多数其他参数将被忽略。你可以尝试以下一个:

mvn release:prepare -B release:perform -Darguments="-Denv=prd" 

答案 1 :(得分:0)

我修复了创建两个配置文件的问题,假设首先有de dafault activation = true并将我的server.address设置为localhost。

将server.address设置为prd服务器的第二个配置文件由命令行直接调用-P prd

因此,当我执行没有参数时,默认配置文件将server.address设置为localhost:8080,当我执行发布时,我使用-P prd并且发布工作正常。

谢谢你的回答。

答案 2 :(得分:0)

我相信你正在使用Maven 2.0.x吗?

如果我没记错的话,在Maven 2.0.7之前或之前,配置文件中的属性覆盖不能正常工作。升级到最新的2.0.x(2.0.11)甚至2.2.x / 3.0.x将按预期工作。

但是,有点偏离主题,我相信你正在访问服务器以获得WSDL吗?我认为这不是一个好主意,特别是对于发布版本,因为它使构建不可重现。考虑将WSDL与源代码(至少对于发布版本)放在一起,以使构建可重现。