Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.92 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>ru.itbrick</groupId>
  6. <artifactId>TNorma</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9.  
  10. <name>TNorma</name>
  11.  
  12. <properties>
  13. <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <spring.ver>5.1.1.RELEASE</spring.ver>
  16. <netbeans.hint.deploy.server>gfv3ee6</netbeans.hint.deploy.server>
  17. <apache.poi.version>3.11</apache.poi.version>
  18. </properties>
  19.  
  20. <repositories>
  21. <repository>
  22. <id>localrepository</id>
  23. <url>file://${project.basedir}/repo</url>
  24. <releases>
  25. <enabled>false</enabled>
  26. <updatePolicy>always</updatePolicy>
  27. <checksumPolicy>warn</checksumPolicy>
  28. </releases>
  29. </repository>
  30. </repositories>
  31.  
  32. <dependencies>
  33. <dependency>
  34. <groupId>ru.itbrick</groupId>
  35. <artifactId>cms-main</artifactId>
  36. <version>1.0-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>ru.itbrick</groupId>
  40. <artifactId>cms-image</artifactId>
  41. <version>1.0-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>ru.itbrick</groupId>
  45. <artifactId>cms-mail</artifactId>
  46. <version>1.0-SNAPSHOT</version>
  47. </dependency>
  48.  
  49. <dependency>
  50. <groupId>jstl</groupId>
  51. <artifactId>jstl</artifactId>
  52. <version>1.2</version>
  53. </dependency>
  54. <!-- Для томкэта. -->
  55. <dependency>
  56. <groupId>javax.mail</groupId>
  57. <artifactId>mail</artifactId>
  58. <version>1.4.7</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.httpcomponents</groupId>
  62. <artifactId>httpclient</artifactId>
  63. <version>4.3.4</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-io</groupId>
  67. <artifactId>commons-io</artifactId>
  68. <version>2.4</version>
  69. <type>jar</type>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-text</artifactId>
  74. <version>1.1</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>commons-fileupload</groupId>
  78. <artifactId>commons-fileupload</artifactId>
  79. <version>1.2</version>
  80. </dependency>
  81.  
  82. <dependency>
  83. <groupId>joda-time</groupId>
  84. <artifactId>joda-time</artifactId>
  85. <version>2.3</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-lang3</artifactId>
  90. <version>3.3.2</version>
  91. <type>jar</type>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi</artifactId>
  96. <!--<version>3.9</version>-->
  97. <version>${apache.poi.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi-ooxml</artifactId>
  102. <!--<version>3.9</version>-->
  103. <version>${apache.poi.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi-scratchpad</artifactId>
  108. <version>${apache.poi.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.xmlbeans</groupId>
  112. <artifactId>xmlbeans</artifactId>
  113. <version>2.6.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-ooxml-schemas</artifactId>
  118. <version>3.10-FINAL</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>fr.opensagres.xdocreport</groupId>
  122. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  123. <version>1.0.6</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>fr.opensagres.xdocreport</groupId>
  127. <artifactId>org.apache.poi.xwpf.converter.core</artifactId>
  128. <version>1.0.6</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>fr.opensagres.xdocreport</groupId>
  132. <artifactId>org.apache.poi.xwpf.converter.pdf</artifactId>
  133. <version>1.0.6</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>javax</groupId>
  137. <artifactId>javaee-web-api</artifactId>
  138. <version>6.0</version>
  139. <scope>provided</scope>
  140. </dependency>
  141.  
  142. <dependency>
  143. <groupId>org.springframework</groupId>
  144. <artifactId>spring-context</artifactId>
  145. <version>${spring.ver}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework</groupId>
  149. <artifactId>spring-core</artifactId>
  150. <version>${spring.ver}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework</groupId>
  154. <artifactId>spring-beans</artifactId>
  155. <version>${spring.ver}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework</groupId>
  159. <artifactId>spring-webmvc</artifactId>
  160. <version>${spring.ver}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.springframework</groupId>
  164. <artifactId>spring-tx</artifactId>
  165. <version>${spring.ver}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework</groupId>
  169. <artifactId>spring-jdbc</artifactId>
  170. <version>${spring.ver}</version>
  171. </dependency>
  172.  
  173. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  174. <dependency>
  175. <groupId>com.fasterxml.jackson.core</groupId>
  176. <artifactId>jackson-databind</artifactId>
  177. <version>2.9.6</version>
  178. </dependency>
  179. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  180. <dependency>
  181. <groupId>com.fasterxml.jackson.core</groupId>
  182. <artifactId>jackson-core</artifactId>
  183. <version>2.9.6</version>
  184. </dependency>
  185.  
  186. <dependency>
  187. <groupId>org.liquibase</groupId>
  188. <artifactId>liquibase-core</artifactId>
  189. <version>3.2.2</version>
  190. </dependency>
  191.  
  192. <dependency>
  193. <groupId>org.imgscalr</groupId>
  194. <artifactId>imgscalr-lib</artifactId>
  195. <version>4.2</version>
  196. <type>jar</type>
  197. <scope>compile</scope>
  198. </dependency>
  199.  
  200. <dependency>
  201. <groupId>log4j</groupId>
  202. <artifactId>log4j</artifactId>
  203. <version>1.2.17</version>
  204. </dependency>
  205. <!-- Gson: Java to Json conversion -->
  206. <dependency>
  207. <groupId>com.google.code.gson</groupId>
  208. <artifactId>gson</artifactId>
  209. <version>2.2.2</version>
  210. <scope>compile</scope>
  211. </dependency>
  212.  
  213. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  214. <dependency>
  215. <groupId>org.jsoup</groupId>
  216. <artifactId>jsoup</artifactId>
  217. <version>1.11.3</version>
  218. </dependency>
  219.  
  220. </dependencies>
  221.  
  222. <build>
  223. <plugins>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-compiler-plugin</artifactId>
  227. <version>2.3.2</version>
  228. <configuration>
  229. <source>1.8</source>
  230. <target>1.8</target>
  231. <compilerArguments>
  232. <endorseddirs>${endorsed.dir}</endorseddirs>
  233. </compilerArguments>
  234. </configuration>
  235. </plugin>
  236. <plugin>
  237. <groupId>org.apache.maven.plugins</groupId>
  238. <artifactId>maven-war-plugin</artifactId>
  239. <version>2.1.1</version>
  240. <configuration>
  241. <failOnMissingWebXml>false</failOnMissingWebXml>
  242. </configuration>
  243. </plugin>
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-dependency-plugin</artifactId>
  247. <version>2.1</version>
  248. <executions>
  249. <execution>
  250. <phase>validate</phase>
  251. <goals>
  252. <goal>copy</goal>
  253. </goals>
  254. <configuration>
  255. <outputDirectory>${endorsed.dir}</outputDirectory>
  256. <silent>true</silent>
  257. <artifactItems>
  258. <artifactItem>
  259. <groupId>javax</groupId>
  260. <artifactId>javaee-endorsed-api</artifactId>
  261. <version>6.0</version>
  262. <type>jar</type>
  263. </artifactItem>
  264. </artifactItems>
  265. </configuration>
  266. </execution>
  267. </executions>
  268. </plugin>
  269. </plugins>
  270. </build>
  271.  
  272. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement