pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.security</groupId>
  7. <artifactId>spring-security-parent</artifactId>
  8. <version>3.0.0.CI-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-security-samples-aspectj</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Spring Security Sample AspectJ</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>junit</groupId>
  16. <artifactId>junit</artifactId>
  17. <version>4.6</version>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.security</groupId>
  22. <artifactId>spring-security-core</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.security</groupId>
  27. <artifactId>spring-security-aspects</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <version>2.0.2</version>
  42. <configuration>
  43. <source>1.6</source>
  44. <target>1.6</target>
  45. </configuration>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.codehaus.mojo</groupId>
  49. <artifactId>aspectj-maven-plugin</artifactId>
  50. <version>1.0</version>
  51. <dependencies>
  52. <!--
  53. NB: You must use Maven 2.0.9 or above or these are ignored (see
  54. MNG-2972)
  55. -->
  56. <dependency>
  57. <groupId>org.aspectj</groupId>
  58. <artifactId>com.springsource.org.aspectj.runtime</artifactId>
  59. <version>1.6.3.RELEASE</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.aspectj</groupId>
  63. <artifactId>com.springsource.org.aspectj.tools</artifactId>
  64. <version>1.6.3.RELEASE</version>
  65. </dependency>
  66. </dependencies>
  67. <executions>
  68. <execution>
  69. <goals>
  70. <goal>compile</goal>
  71. <goal>test-compile</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. <configuration>
  76. <aspectLibraries>
  77. <aspectLibrary>
  78. <groupId>org.springframework.security</groupId>
  79. <artifactId>spring-security-aspects</artifactId>
  80. </aspectLibrary>
  81. </aspectLibraries>
  82. <source>1.6</source>
  83. <target>1.6</target>
  84. </configuration>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>