1
0

Replace deprecated systemProperties with systemPropertyVariables

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1164329 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley
2011-09-02 02:12:46 +00:00
parent 75d4c7ca2b
commit f513458770

29
pom.xml
View File

@@ -342,30 +342,15 @@ under the License.
<includes>
<include>**/*TestCase.java</include>
</includes>
<systemProperties>
<systemPropertyVariables>
<!--
<property>
<name>org.apache.commons.logging.diagnostics.dest</name>
<value>STDOUT</value>
</property>
<org.apache.commons.logging.diagnostics.dest>STDOUT</org.apache.commons.logging.diagnostics.dest>
-->
<property>
<name>commons-logging</name>
<value>target/${project.build.finalName}.jar</value>
</property>
<property>
<name>commons-logging-api</name>
<value>target/${project.artifactId}-api-${project.version}.jar</value>
</property>
<property>
<name>commons-logging-adapters</name>
<value>target/${project.artifactId}-adapters-${project.version}.jar</value>
</property>
<property>
<name>testclasses</name>
<value>target/commons-logging-tests.jar</value>
</property>
</systemProperties>
<commons-logging>target/${project.build.finalName}.jar</commons-logging>
<commons-logging-api>target/${project.artifactId}-api-${project.version}.jar</commons-logging-api>
<commons-logging-adapters>target/${project.artifactId}-adapters-${project.version}.jar</commons-logging-adapters>
<testclasses>target/commons-logging-tests.jar</testclasses>
</systemPropertyVariables>
</configuration>
</execution>
</executions>