我的POM有什么问题? "解析表达式...检测递归表达式循环"

时间:2017-02-26 11:44:43

标签: java maven

所以我有一些包含运行时参数的TestNG SuiteXML文件,如下所示: -

 <!--SERVER AND TARGET PARAMS-->
    <parameter name="environment" value="${environment}"/>
    <parameter name="port" value="${port}"/>

我的POM看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>

http://maven.apache.org/xsd/maven-4.0.0.xsd">     4.0.0

<groupId>co.uk.multicom.test.project</groupId>
<artifactId>fab-handler-automation</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
    <sl4j.version>1.7.7</sl4j.version>
    <suiteFile>${suiteFile}</suiteFile>
    <environment>${environment}</environment>
    <port>${port}</port>
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19.1</version>
            <configuration>
                <systemProperties>
                    <property>
                        <name>javax.xml.parsers.SAXParserFactory</name>
                        <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
                    </property>
                    <property>
                        <name>user.language</name>
                        <value>en</value>
                    </property>
                </systemProperties>
                <!--<testFailureIgnore>true</testFailureIgnore>-->
                <suiteXmlFiles>
                    <suiteXmlFile>${suiteFile}</suiteXmlFile>
                </suiteXmlFiles>
                <systemPropertyVariables>
                    <environment>${environment}</environment>
                    <port>${port}</port>
                </systemPropertyVariables>
                <properties>
                    <property>
                        <name>parallel</name>
                        <value>methods</value>
                    </property>
                    <property>
                        <name>threadCount</name>
                        <value>1</value>
                    </property>
                    <property>
                        <name>dataproviderthreadcount</name>
                        <value>1</value>
                    </property>
                </properties>
            </configuration>
        </plugin>
    </plugins>
</build>
<dependencies>
    <!-- https://mvnrepository.com/artifact/com.jayway.restassured/rest-assured -->
    <dependency>
        <groupId>com.jayway.restassured</groupId>
        <artifactId>rest-assured</artifactId>
        <version>2.9.0</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore</artifactId>
        <version>4.4.6</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.9.10</version>
    </dependency>
    <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-all</artifactId>
        <version>1.3</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>htmlunit-driver</artifactId>
        <version>2.21</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>3.0.0</version>
    </dependency>
    <dependency>
        <groupId>net.sourceforge.jexcelapi</groupId>
        <artifactId>jxl</artifactId>
        <version>2.6.12</version>
    </dependency>
    <!-- Logging -->
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>1.7.21</version>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>1.7.21</version>
    </dependency>
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.17</version>
    </dependency>
    <!-- pom.xml -->
    <dependency>
        <groupId>com.aventstack</groupId>
        <artifactId>extentreports</artifactId>
        <version>3.0.0</version>
    </dependency>
</dependencies>

我的错误是:

[ERROR]     Resolving expression: '${environment}': Detected the following recursive expression cycle in 'environment': [environment] -> [Help 2]
[ERROR]     Resolving expression: '${port}': Detected the following recursive expression cycle in 'port': [port] -> [Help 2]

我是傻瓜吗?也许,我毕竟只是一个测试人员并拥有一个非常小的大脑。任何人都可以帮我排除故障吗?我的POM看起来很漂亮吗?

它不会将我所需的罐子下载到本地.m2,直到我能解决它 - 我试过吹掉.m2并做mvn install等......没有快乐。

4 个答案:

答案 0 :(得分:1)

我不确定因为我只有时间快速查看,但是定义属性然后将该属性分配给自己就是我认为你在做的事情并且是导致错误的原因。

你不能在你的pom中使用$ {suiteFile}而不在<properties></properties>中定义它吗?

或者你可以在pom中使用另一个属性名称吗? 例如:

 <properties>
        <suiteFile1>${suiteFile}</suiteFile>
        <environment1>${environment}</environment>
        <port1>${port}</port>
    </properties>

并在你的pom中进一步使用那些?

答案 1 :(得分:1)

您的错误来自此部分:

<properties>
    <sl4j.version>1.7.7</sl4j.version>
    <suiteFile>${suiteFile}</suiteFile>
    <environment>${environment}</environment>
    <port>${port}</port>
</properties>

当您使用 $ {port} 时,Maven会在<port>X</port>中查找值,这里的X = $ {port}等等......这就是为什么你会得到一个递归问题这里

答案 2 :(得分:0)

可能是您可以阅读maven文档,它会告诉我们您不支持的格式。 https://maven.apache.org/pom.html#Properties

也许尝试以下方式:

<profiles>
    <profile>
        <id>test</id>
        <activation>
            <activeByDefault>true</activeByDefault>
            <os>
                <family>mac</family>
            </os>
        </activation>
        <properties>
             <suiteFile>${suiteFile}</suiteFile>
             <environment>${environment}</environment>
             <port>${port}</port>
        </properties>
   </profile>
</profiles>

并执行:

clean package -pl ${project_name} -am -Denv=prod -DskipTests=true

注意: $ {project_name}是您的项目名称

我可能错误地描述,你可以尝试一下

答案 3 :(得分:0)

我今天遇到了同样的问题。更有意思的是,是在几分钟前我成功执行了同一项目之后。原来在配置文件中写入命令(干净的软件包等)的地方,构建配置有错误。
愚蠢的错误,但使我花了一些时间,之所以可以更早地工作,是因为我手动输入了命令,而不是使用保存的构建配置。