PageRenderTime 59ms CodeModel.GetById 33ms RepoModel.GetById 0ms app.codeStats 0ms

/rmic-maven-plugin-1.1/src/it/rmic-multiple-runs-MRMIC-23/pom.xml

#
XML | 39 lines | 37 code | 2 blank | 0 comment | 0 complexity | e509751472403fe121cb27ca77b7d24d MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.codehaus.mojo.rmic</groupId>
  7. <artifactId>it-test</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>Integration Test</name>
  10. <url>http://maven.apache.org</url>
  11. <description>
  12. Check default execution.
  13. </description>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.codehaus.mojo</groupId>
  18. <artifactId>rmic-maven-plugin</artifactId>
  19. <version>@pom.version@</version>
  20. <executions>
  21. <execution>
  22. <goals>
  23. <goal>rmic</goal>
  24. <goal>test-rmic</goal>
  25. </goals>
  26. <configuration>
  27. <outputDirectory>target/classes</outputDirectory>
  28. <includes>
  29. <include>**/*</include>
  30. </includes>
  31. </configuration>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>