pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <parent>
  5. <groupId>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>1.3.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-security</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.superdesk.libs</groupId>
  13. <artifactId>superdesk-libs-common</artifactId>
  14. <version>${project.parent.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>cn.superdesk.libs</groupId>
  18. <artifactId>superdesk-libs-spring</artifactId>
  19. <version>${project.parent.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.superdesk.libs</groupId>
  23. <artifactId>superdesk-libs-cache</artifactId>
  24. <version>${project.parent.version}</version>
  25. <optional>true</optional>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.superdesk.libs</groupId>
  29. <artifactId>superdesk-libs-springweb</artifactId>
  30. <version>${project.parent.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.servlet</groupId>
  34. <artifactId>javax.servlet-api</artifactId>
  35. <version>3.1.0</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>19.0</version>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-deploy-plugin</artifactId>
  49. <configuration>
  50. <skip>false</skip>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>