eclipse-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.testability-explorer</groupId>
<artifactId>eclipse-plugin</artifactId>
<version>1.3.3</version>
</dependency><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.3</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>