Author: khmarbaise Date: Sun Sep 6 11:01:07 2015 New Revision: 1701469 URL: http://svn.apache.org/r1701469 Log: [MINVOKER-194] First try to reproduce it via IT not yet successful.
Added: maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/invoker.properties maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/pom.xml maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/invoker.properties maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/pom.xml Added: maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/invoker.properties URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/invoker.properties?rev=1701469&view=auto ============================================================================== --- maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/invoker.properties (added) +++ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/invoker.properties Sun Sep 6 11:01:07 2015 @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +invoker.goals = clean verify Added: maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/pom.xml?rev=1701469&view=auto ============================================================================== --- maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/pom.xml (added) +++ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/pom.xml Sun Sep 6 11:01:07 2015 @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<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.apache.maven.plugins.invoker.its</groupId> + <artifactId>maven-wrong-interpolation-test</artifactId> + <version>0.1-SNAPSHOT</version> + <name>Maven Property Interpolation Test</name> + <description>Maven Invoker tests for property interpolation</description> + + <url>https://issues.apache.org/jira/browse/MINVOKER-194</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-invoker-plugin</artifactId> + <version>@project.version@</version> + <configuration> + <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> + <postBuildHookScript>verify</postBuildHookScript> + </configuration> + <executions> + <execution> + <goals> + <goal>install</goal> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> Added: maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/invoker.properties URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/invoker.properties?rev=1701469&view=auto ============================================================================== --- maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/invoker.properties (added) +++ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/invoker.properties Sun Sep 6 11:01:07 2015 @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +invoker.name=wrong property interpolation +invoker.goals=org.apache.maven.plugins:maven-project-info-reports-plugin:2.8:summary help:effective-pom -Doutput=effective-pom.xml Added: maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/pom.xml?rev=1701469&view=auto ============================================================================== --- maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/pom.xml (added) +++ maven/plugins/trunk/maven-invoker-plugin/src/it/wrongPropertyInterpolation/src/it/project/pom.xml Sun Sep 6 11:01:07 2015 @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<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.apache.maven.invoker.its.it</groupId> + <artifactId>maven-prop-interpolation</artifactId> + <version>0.1-SNAPSHOT</version> + <packaging>jar</packaging> + <properties> + <maven.compiler.source>1.3</maven.compiler.source> + <maven.compiler.target>1.3</maven.compiler.target> + <!-- <maven.compiler.target>${maven.compiler.source}</maven.compiler.target> --> + </properties> + <build> + <plugins> + <plugin> + <groupId>com.soebes.maven.plugins</groupId> + <artifactId>echo-maven-plugin</artifactId> + <version>0.2</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>echo</goal> + </goals> + </execution> + </executions> + <configuration> + <echos> + <echo>maven.compiler.source: ${maven.compiler.source}</echo> + <echo>maven.compiler.target: ${maven.compiler.target}</echo> + </echos> + </configuration> + </plugin> + </plugins> + </build> +</project>