evo-classindex
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.atteo</groupId> <artifactId>evo-classindex</artifactId> <version>2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>evo-classindex-top</artifactId> <groupId>org.atteo</groupId> <version>2.2</version> </parent> <artifactId>evo-classindex</artifactId> <name>Evo Class Index</name> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> <configuration> <proc>none</proc> </configuration> </execution> <execution> <id>compile-important-processor</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <proc>none</proc> <testIncludes> <include>org/atteo/evo/classindex/processor/*</include> </testIncludes> </configuration> </execution> <execution> <id>default-testCompile</id> <configuration> <testExcludes> <exclude>org/atteo/evo/classindex/SecondService.java</exclude> </testExcludes> </configuration> </execution> <execution> <id>compileSecondService</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <testIncludes> <includes>org/atteo/evo/classindex/SecondService.java</includes> </testIncludes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-test-classes</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <delete file="${project.build.testOutputDirectory}/org/atteo/evo/classindex/DeletedComponent.class" /> </target> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <!-- Sometimes when annotation processor fails javac returns success, but does not compile any files. --> <id>check-tests-compile-correctly</id> <phase>verify</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireFilesExist> <files> <file>${project.build.testOutputDirectory}/org/atteo/evo/classindex/ClassIndexTest.class</file> </files> <message>javac returned success, but did not compile any files</message> </requireFilesExist> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>