pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>am-lodge-framework</artifactId>
  8. <groupId>am.lodge</groupId>
  9. <version>test-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>hgyc-api</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>am.lodge</groupId>
  16. <artifactId>am-lodge-persistence</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>am.lodge</groupId>
  20. <artifactId>am-lodge-spring-security</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.security</groupId>
  24. <artifactId>spring-security-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mybatis</groupId>
  28. <artifactId>mybatis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mybatis</groupId>
  32. <artifactId>mybatis-spring</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.servlet</groupId>
  36. <artifactId>javax.servlet-api</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.poi</groupId>
  41. <artifactId>poi</artifactId>
  42. <version>3.17</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. <version>3.17</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.imagej</groupId>
  51. <artifactId>ij</artifactId>
  52. <version>1.52g</version>
  53. </dependency>
  54. </dependencies>
  55. <distributionManagement>
  56. <repository>
  57. <id>private.maven.releases</id>
  58. <name>private.maven.releases</name>
  59. <url>http://develop.tengfengit.com/nexus/repository/maven-releases</url>
  60. </repository>
  61. <snapshotRepository>
  62. <id>private.maven.snapshots</id>
  63. <name>private.maven.snapshots</name>
  64. <url>http://develop.tengfengit.com/nexus/repository/maven-snapshots</url>
  65. </snapshotRepository>
  66. </distributionManagement>
  67. </project>