texry-maven-plugin-0.2.pom.xml Maven / Gradle / Ivy
<?xml version="1.0"?> <!-- * * Copyright (c) 2009-2012, TeXry.com * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: 1) Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. 2) Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. 3) Neither the name of the TeXry.com nor * the names of its contributors may be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * * @version $Id: pom.xml 104 2012-03-26 16:47:52Z [email protected] $ --> <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>com.texry</groupId> <artifactId>texry</artifactId> <version texry="yes">0.2</version> </parent> <artifactId>texry-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>texry-maven-plugin</name> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </dependency> <dependency> <groupId>com.ymock</groupId> <artifactId>ymock-util</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version since="22 Aug 2011">3.0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version since="22 Aug 2011">3.0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version since="22 Aug 2011">3.0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <!-- Forward all calls to SLF4J to Maven log. --> <groupId>com.rempl.plugins</groupId> <artifactId>rempl-maven-plugin</artifactId> <version since="19 Sep 2011">1.1.3</version> </dependency> <dependency> <!-- Forward all LOG4J calls to SLF4J --> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version since="19 Sep 2011">1.6.2</version> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version since="4 Oct 2011">2.9</version> <executions> <execution> <id>generated-helpmojo</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version since="22 Mar 2011">1.5</version> <configuration> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <debug>false</debug> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <noLog>false</noLog> <!-- With this construct you can include some projects, which you're interested in. --> <pomIncludes> <pomInclude>simple/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript>verify</postBuildHookScript> <preBuildHookScript>setup</preBuildHookScript> <projectsDirectory>src/it</projectsDirectory> <settingsFile>${basedir}/src/it/settings.xml</settingsFile> <showErrors>true</showErrors> <showVersion>false</showVersion> <streamLogs>true</streamLogs> </configuration> <executions> <execution> <id>install-invoker</id> <goals> <goal>install</goal> </goals> <phase>pre-integration-test</phase> </execution> <execution> <id>run-invoker</id> <goals> <goal>run</goal> </goals> <phase>integration-test</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version since="26 Oct 2011">1.6</version> <executions> <execution> <phase>pre-integration-test</phase> <configuration> <target> <copy verbose="yes" overwrite="yes" file="${basedir}/../pom.xml" tofile="${project.build.directory}/local-repo/com/texry/texry/${project.version}/texry-${project.version}.pom"/> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy