| <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"> |
| <parent> |
| <groupId>npanday.plugin</groupId> |
| <version>1.1</version> |
| <artifactId>maven-dotnet-plugins</artifactId> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>wix-maven-plugin</artifactId> |
| <packaging>maven-plugin</packaging> |
| <name>NPanday :: WiX Maven Plugin</name> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-exec</artifactId> |
| <version>1.0</version> |
| </dependency> |
| </dependencies> |
| <profiles> |
| <profile> |
| <id>its</id> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-invoker-plugin</artifactId> |
| <version>1.3</version> |
| <configuration> |
| <projectsDirectory>src/it</projectsDirectory> |
| <cloneProjectsTo>target/it</cloneProjectsTo> |
| <pomIncludes> |
| <pomInclude>*/pom.xml</pomInclude> |
| </pomIncludes> |
| <!-- Can't use localRepositoryPath or -Dmaven.repo.local with NPanday |
| See http://npanday.codeplex.com/WorkItem/View.aspx?WorkItemId=10557 |
| <localRepositoryPath>target/local-repo</localRepositoryPath> --> |
| <postBuildHookScript>verify.bsh</postBuildHookScript> |
| </configuration> |
| <executions> |
| <execution> |
| <id>integration-test</id> |
| <goals> |
| <goal>install</goal> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |