pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0"?>
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-parent</artifactId>
  7. <version>2.5.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>spring-el-security</artifactId>
  10. <packaging>jar</packaging>
  11. <name>Spring Expression Language for Security</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>commons-logging</groupId>
  15. <artifactId>commons-logging</artifactId>
  16. <version>1.1.1</version>
  17. <optional>true</optional>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.antlr</groupId>
  21. <artifactId>antlr</artifactId>
  22. <version>3.0.1</version>
  23. </dependency>
  24. <!--
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-core</artifactId>
  28. <version>2.5.5</version>
  29. </dependency>
  30. -->
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-surefire-plugin</artifactId>
  37. <version>2.4.2</version>
  38. <configuration>
  39. <excludes>
  40. <exclude>**/*Tests.class</exclude>
  41. </excludes>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>