pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>2.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-cache</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>redis.clients</groupId>
  23. <artifactId>jedis</artifactId>
  24. <version>${jedis.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.google.guava</groupId>
  28. <artifactId>guava</artifactId>
  29. <version>19.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>net.sf.ehcache</groupId>
  33. <artifactId>ehcache-core</artifactId>
  34. <version>2.6.11</version>
  35. <optional>true</optional>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-deploy-plugin</artifactId>
  43. <configuration>
  44. <skip>false</skip>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>