pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.acegisecurity</groupId>
  5. <artifactId>acegi-security-parent</artifactId>
  6. <version>1.0.7</version>
  7. </parent>
  8. <artifactId>acegi-security-tiger</artifactId>
  9. <name>Acegi Security System for Spring - Java 5 (Tiger)</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.acegisecurity</groupId>
  13. <artifactId>acegi-security</artifactId>
  14. <version>${project.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-aop</artifactId>
  19. <version>${spring.version}</version>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-compiler-plugin</artifactId>
  27. <configuration>
  28. <source>1.5</source>
  29. <target>1.5</target>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. <reporting>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-pmd-plugin</artifactId>
  39. <configuration>
  40. <targetJdk>1.5</targetJdk>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </reporting>
  45. </project>