blob: ccaa1d19c1475b52be23ce3c27651d1d5251d737 [file] [log] [blame]
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-sandbox-parent</artifactId>
<version>6</version>
</parent>
<artifactId>commons-exec</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Commons Exec (Sandbox)</name>
<description>A library to reliably execute external processes from within the JVM</description>
<url>http://commons.apache.org/sandbox/exec/</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
<id>brett</id>
<name>Brett Porter</name>
<email>brett AT apache DOT org</email>
<organization>Apache</organization>
<timezone>+10</timezone>
</developer>
<developer>
<id>trygvis</id>
<name>Trygve Laugst&#x00F8;l</name>
<email>trygvis AT apache DOT org</email>
<organization>Apache</organization>
<timezone>+1</timezone>
</developer>
<developer>
<id>sgoeschl</id>
<name>Siegfried Goeschl</name>
<email>sgoeschl AT apache DOT org</email>
<organization>Apache</organization>
<timezone>+1</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Niklas Gustavsson</name>
<email>niklas AT protocol7 DOT com</email>
</contributor>
</contributors>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/exec/trunk/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/exec/trunk/</developerConnection>
<url>http://svn.apache.org/viewvc/commons/sandbox/exec/trunk/</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/TestUtil.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>website</id>
<name>Apache Website</name>
<url>scp://people.apache.org/www/commons.apache.org/sandbox/exec/</url>
</site>
</distributionManagement>
<reporting>
<plugins>
<!-- generate the changes report from changes.xml -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.0</version>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- generate the changelog report to simplify reviewing the changes -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.1</version>
<configuration>
<basedir>${basedir}</basedir>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<!--
enable this profile if you like to create cobertura report not being part of the official website
-->
<profile>
<id>coverage</id>
<reporting>
<plugins>
<!-- Avoid broken Cobertura 2.1 plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<!-- Compiler source and target JVM (see parent pom) -->
<properties>
<maven.compile.source>1.3</maven.compile.source>
<maven.compile.target>1.3</maven.compile.target>
<test>*Test</test>
<commons.componentid>exec</commons.componentid>
<commons.jira.componentid>12311184</commons.jira.componentid>
</properties>
</project>