unix-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>unix-maven-plugin</artifactId> <version>1.0-alpha-5</version> </dependency>
<!-- ~ The MIT License ~ ~ Copyright 2009 The Codehaus. ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy of ~ this software and associated documentation files (the "Software"), to deal in ~ the Software without restriction, including without limitation the rights to ~ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies ~ of the Software, and to permit persons to whom the Software is furnished to do ~ so, subject to the following conditions: ~ ~ The above copyright notice and this permission notice shall be included in all ~ copies or substantial portions of the Software. ~ ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE ~ SOFTWARE. --> <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> <parent> <groupId>org.codehaus.mojo.unix</groupId> <artifactId>unix</artifactId> <version>1.0-alpha-5</version> </parent> <groupId>org.codehaus.mojo</groupId> <artifactId>unix-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>Maven Unix Plug-In</name> <inceptionYear>2003</inceptionYear> <prerequisites> <maven>3.0</maven> </prerequisites> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>org.codehaus.mojo.unix</groupId> <artifactId>unix-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>easymock</groupId> <artifactId>easymock</artifactId> <version>1.2_Java1.3</version> <scope>test</scope> </dependency> <!-- These are for the integration tests --> <dependency> <groupId>org.jvnet.hudson.main</groupId> <artifactId>hudson-war</artifactId> <version>1.255</version> <type>war</type> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <version>1.0-beta-1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> <version>1.7.5</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>integration-tests</id> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>1.6-SNAPSHOT</version> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> <configuration> <addTestClassPath>true</addTestClassPath> <pomIncludes> <!-- <pomInclude>jetty/pom4test.xml</pomInclude> <pomInclude>test-deb-*/pom4test.xml</pomInclude> <pomInclude>test-rpm-*/pom4test.xml</pomInclude> <pomInclude>test-zip-*/pom4test.xml</pomInclude> <pomInclude>test-sysvpkg-1/pom4test.xml</pomInclude> --> <!-- <pomInclude>test-sysvpkg-*/pom4test.xml</pomInclude> <pomInclude>unix-from-jar-project/pom4test.xml</pomInclude> --> </pomIncludes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>