Advertisement
Guest User

Untitled

a guest
Mar 6th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.09 KB | None | 0 0
  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.  
  7. <groupId>admin</groupId>
  8. <artifactId>test</artifactId>
  9. <version>1.0</version>
  10. <packaging>war</packaging>
  11.  
  12. <name>Datalis Admin</name>
  13. <url>http://maven.apache.org</url>
  14.  
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.1.2.RELEASE</version>
  19. </parent>
  20.  
  21. <dependencies>
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>javax.servlet-api</artifactId>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fasterxml.jackson.dataformat</groupId>
  29. <artifactId>jackson-dataformat-xml</artifactId>
  30. <version>2.9.8</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.fasterxml.jackson.core</groupId>
  34. <artifactId>jackson-annotations</artifactId>
  35. <version>2.9.8</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.module</groupId>
  40. <artifactId>jackson-module-jaxb-annotations</artifactId>
  41. <version>2.9.8</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  45. <artifactId>jackson-jaxrs-json-provider</artifactId>
  46. <version>2.9.8</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-io</groupId>
  50. <artifactId>commons-io</artifactId>
  51. <version>2.6</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.codehaus.woodstox</groupId>
  55. <artifactId>woodstox-core-asl</artifactId>
  56. <version>4.4.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.xml.bind</groupId>
  60. <artifactId>jaxb-api</artifactId>
  61. <version>2.3.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.sun.xml.bind</groupId>
  65. <artifactId>jaxb-core</artifactId>
  66. <version>2.3.0.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.sun.xml.bind</groupId>
  70. <artifactId>jaxb-impl</artifactId>
  71. <version>2.3.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.mapstruct</groupId>
  79. <artifactId>mapstruct-jdk8</artifactId>
  80. <version>1.2.0.Final</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.jxls</groupId>
  84. <artifactId>jxls-poi</artifactId>
  85. <version>1.0.16</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-web</artifactId>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-tomcat</artifactId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax</groupId>
  99. <artifactId>javaee-api</artifactId>
  100. <version>8.0</version>
  101. <scope>provided</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.security.oauth</groupId>
  105. <artifactId>spring-security-oauth2</artifactId>
  106. <version>2.3.4.RELEASE</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.security.oauth.boot</groupId>
  110. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  111. <version>2.1.1.RELEASE</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-security</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-amqp</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-actuator</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.session</groupId>
  131. <artifactId>spring-session-core</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-data-jpa</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-devtools</artifactId>
  140. <scope>runtime</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-starter-mail</artifactId>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-starter-test</artifactId>
  149. <version>2.1.1.RELEASE</version>
  150. <scope>test</scope>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <finalName>test</finalName>
  155. <plugins>
  156. <plugin>
  157. <artifactId>maven-war-plugin</artifactId>
  158. <version>3.2.2</version>
  159. <configuration>
  160. <archive>
  161. <manifestEntries>
  162. <Dependencies>jdk.unsupported</Dependencies>
  163. </manifestEntries>
  164. </archive>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-compiler-plugin</artifactId>
  170. <version>3.8.0</version>
  171. <configuration>
  172. <source>10</source>
  173. <target>10</target>
  174. <encoding>${project.build.sourceEncoding}</encoding>
  175. <annotationProcessorPaths>
  176. <path>
  177. <groupId>org.mapstruct</groupId>
  178. <artifactId>mapstruct-processor</artifactId>
  179. <version>1.2.0.Final</version>
  180. </path>
  181. </annotationProcessorPaths>
  182. </configuration>
  183. </plugin>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-resources-plugin</artifactId>
  187. <version>3.1.0</version>
  188. <configuration>
  189. <encoding>${project.build.sourceEncoding}</encoding>
  190. </configuration>
  191. </plugin>
  192. <plugin>
  193. <groupId>org.apache.maven.plugins</groupId>
  194. <artifactId>maven-surefire-plugin</artifactId>
  195. <version>3.0.0-M2</version>
  196. </plugin>
  197. </plugins>
  198. </build>
  199. <properties>
  200. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  201. </properties>
  202. <repositories>
  203. <repository>
  204. <id>repository.spring.release</id>
  205. <name>Spring GA Repository</name>
  206. <url>http://repo.spring.io/release</url>
  207. </repository>
  208. </repositories>
  209. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement