pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.springframework</groupId>
  6. <artifactId>com_adapt_dbsrcnn</artifactId>
  7. <version>3.0.0</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>1.4.0.RELEASE</version>
  13. </parent>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-test</artifactId>
  21. <version>3.1.1.RELEASE</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jpa</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.security.oauth</groupId>
  38. <artifactId>spring-security-oauth2</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-tomcat</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. <version>5.1.34</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-lang</groupId>
  52. <artifactId>commons-lang</artifactId>
  53. <version>2.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.itextpdf</groupId>
  57. <artifactId>itextpdf</artifactId>
  58. <version>5.0.6</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-mail</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.json</groupId>
  66. <artifactId>json</artifactId>
  67. <version>20160810</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>commons-io</groupId>
  71. <artifactId>commons-io</artifactId>
  72. <version>1.4</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-beanutils</groupId>
  76. <artifactId>commons-beanutils</artifactId>
  77. <version>1.8.3</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-fileupload</groupId>
  81. <artifactId>commons-fileupload</artifactId>
  82. <version>1.3.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpclient</artifactId>
  87. <version>4.1.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.zeroturnaround</groupId>
  91. <artifactId>zt-zip</artifactId>
  92. <version>1.8</version>
  93. <type>jar</type>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. <repositories>
  105. <repository>
  106. <id>spring-releases</id>
  107. <url>https://repo.spring.io/libs-release</url>
  108. </repository>
  109. </repositories>
  110. <pluginRepositories>
  111. <pluginRepository>
  112. <id>spring-plugin-releases</id>
  113. <url>https://repo.spring.io/plugins-release</url>
  114. </pluginRepository>
  115. </pluginRepositories>
  116. </project>