pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.bstek.urule</groupId>
  5. <artifactId>urule-parent</artifactId>
  6. <version>2.0.0</version>
  7. </parent>
  8. <artifactId>urule-console</artifactId>
  9. <version>2.0.4-SNAPSHOT</version>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.bstek.urule</groupId>
  13. <artifactId>urule-core</artifactId>
  14. <version>2.0.4-SNAPSHOT</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.apache.jackrabbit</groupId>
  18. <artifactId>jackrabbit-core</artifactId>
  19. <version>2.13.3</version>
  20. <exclusions>
  21. <exclusion>
  22. <artifactId>derby</artifactId>
  23. <groupId>org.apache.derby</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>javax.jcr</groupId>
  29. <artifactId>jcr</artifactId>
  30. <version>2.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.servlet</groupId>
  34. <artifactId>servlet-api</artifactId>
  35. <version>2.5</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-fileupload</groupId>
  40. <artifactId>commons-fileupload</artifactId>
  41. <version>1.3.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.velocity</groupId>
  45. <artifactId>velocity</artifactId>
  46. <version>1.7</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi-ooxml</artifactId>
  51. <version>3.14</version>
  52. </dependency>
  53. </dependencies>
  54. <developers>
  55. <developer>
  56. <name>Gaojie</name>
  57. <email>jacky.gao@bstek.com</email>
  58. <organization>Bstek</organization>
  59. <organizationUrl>http://www.bstek.com</organizationUrl>
  60. </developer>
  61. </developers>
  62. <scm>
  63. <connection>https://github.com/youseries/urule.git</connection>
  64. <developerConnection>https://github.com/youseries/urule.git</developerConnection>
  65. <url>https://github.com/youseries/urule</url>
  66. </scm>
  67. <organization>
  68. <name>Bstek</name>
  69. <url>http://www.bstek.com</url>
  70. </organization>
  71. <name>URule Console Project</name>
  72. <url>https://github.com/youseries/urule/tree/master/urule-console</url>
  73. </project>