/eclipse-plugin/pom.xml
http://testability-explorer.googlecode.com/ · XML · 53 lines · 52 code · 1 blank · 0 comment · 0 complexity · 4789b1629f2b9e116dd4dc5941238feb MD5 · raw file
- <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>com.google.testability-explorer</groupId>
- <artifactId>testability-explorer-parent</artifactId>
- <version>1.3.4-SNAPSHOT</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>com.google.testability-explorer</groupId>
- <artifactId>testability-explorer</artifactId>
- <version>${version}</version>
- </dependency>
- </dependencies>
- <artifactId>eclipse-plugin</artifactId>
- <name>Testability Explorer - Eclipse plugin</name>
- <packaging>jar</packaging>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>compile</id>
- <phase>compile</phase>
- <configuration>
- <tasks>
- <ant />
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean</id>
- <phase>clean</phase>
- <configuration>
- <tasks>
- <ant target="clean" />
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>