Guest User

Untitled

a guest
Nov 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>1.4.1.RELEASE</version>
  5. </parent>
  6. <groupId>com.test</groupId>
  7. <artifactId>amin</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>admin Maven Webapp</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <dependencies>
  14.  
  15. <dependency>
  16. <groupId>javax.servlet</groupId>
  17. <artifactId>javax.servlet-api</artifactId>
  18. <version>3.0.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.tomcat.embed</groupId>
  22. <artifactId>tomcat-embed-logging-juli</artifactId>
  23. <version>7.0.22</version>
  24. </dependency>
  25.  
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>ch.qos.logback</groupId>
  32. <artifactId>logback-classic</artifactId>
  33. </exclusion>
  34. <exclusion>
  35. <groupId>org.slf4j</groupId>
  36. <artifactId>slf4j-api</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>ch.qos.logback</groupId>
  46. <artifactId>logback-classic</artifactId>
  47. </exclusion>
  48. <exclusion>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-api</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54.  
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-jpa</artifactId>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>ch.qos.logback</groupId>
  61. <artifactId>logback-classic</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.postgresql</groupId>
  67. <artifactId>postgresql</artifactId>
  68. <version>9.4-1200-jdbc41</version>
  69. </dependency>
  70. <dependency>
  71.  
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpmime</artifactId>
  74. <version>4.3.6</version>
  75. <type>jar</type>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. <version>2.4</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.reflections</groupId>
  85. <artifactId>reflections</artifactId>
  86. <version>0.9.9-RC1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>javax.websocket</groupId>
  90. <artifactId>javax.websocket-api</artifactId>
  91. <version>1.0</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.googlecode.plist</groupId>
  96. <artifactId>dd-plist</artifactId>
  97. <version>1.8</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>redis.clients</groupId>
  101. <artifactId>jedis</artifactId>
  102. <version>2.8.1</version>
  103. <type>jar</type>
  104. <scope>compile</scope>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <finalName>admin</finalName>
  109. <plugins>
  110.  
  111. <plugin>
  112. <artifactId>maven-compiler-plugin</artifactId>
  113. <version>3.2</version>
  114. <configuration>
  115. <source>1.8</source>
  116. <target>1.8</target>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. </plugin>
  123.  
  124. </plugins>
  125. </build>
  126. <properties>
  127. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  128. <start-class>com.test.test</start-class>
  129. <tomcat.version>7.0.65</tomcat.version>
  130.  
  131. </properties>
  132.  
  133. <dependency>
  134. <groupId>javax.servlet</groupId>
  135. <artifactId>javax.servlet-api</artifactId>
  136. <version>3.0.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.tomcat.embed</groupId>
  140. <artifactId>tomcat-embed-logging-juli</artifactId>
  141. <version>7.0.22</version>
  142. </dependency>
  143.  
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter</artifactId>
  147. <exclusions>
  148. <exclusion>
  149. <groupId>ch.qos.logback</groupId>
  150. <artifactId>logback-classic</artifactId>
  151. </exclusion>
  152. <exclusion>
  153. <groupId>org.slf4j</groupId>
  154. <artifactId>slf4j-api</artifactId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
Add Comment
Please, Sign In to add comment