pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.ranides</groupId>
  5. <artifactId>assira.rules.test</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  11. <maven.compiler.source>1.7</maven.compiler.source>
  12. <maven.compiler.target>1.7</maven.compiler.target>
  13. </properties>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-pmd-plugin</artifactId>
  19. <version>3.5</version>
  20. <configuration>
  21. <rulesets>
  22. <ruleset>rulesets/java/ranides.test.xml</ruleset>
  23. </rulesets>
  24. </configuration>
  25. <dependencies>
  26. <dependency>
  27. <groupId>net.ranides</groupId>
  28. <artifactId>assira.rules</artifactId>
  29. <version>1.2</version>
  30. </dependency>
  31. </dependencies>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. <reporting>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-jxr-plugin</artifactId>
  40. <version>2.3</version>
  41. </plugin>
  42. </plugins>
  43. </reporting>
  44. </project>