Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.09 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. <groupId>Tess4TomRest</groupId>
  5. <artifactId>Tess4TomRest</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <properties>
  9.  
  10. <h2.version>1.4.197</h2.version>
  11.  
  12. </properties>
  13.  
  14. <dependencies>
  15. <!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
  16. <!-- dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-jdbc</artifactId>
  19. <version>${spring.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-beans</artifactId>
  24. <version>${spring.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-context</artifactId>
  29. <version>${spring.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-core</artifactId>
  34. <version>${spring.version}</version>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>commons-logging</groupId>
  38. <artifactId>commons-logging</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency-->
  42. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-lang3</artifactId>
  46. <version>3.7</version>
  47. </dependency>
  48.  
  49. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpmime</artifactId>
  53. <version>4.5.5</version>
  54. </dependency>
  55.  
  56. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpasyncclient -->
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpasyncclient</artifactId>
  60. <version>4.1.3</version>
  61. </dependency>
  62.  
  63. <!-- https://mvnrepository.com/artifact/com.h2database/h2> -->
  64. <dependency>
  65. <groupId>com.h2database</groupId>
  66. <artifactId>h2</artifactId>
  67. <version>${h2.version}</version>
  68. </dependency>
  69.  
  70. <dependency>
  71. <groupId>net.sourceforge.tess4j</groupId>
  72. <artifactId>tess4j</artifactId>
  73. <version>4.0.2</version>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/org.json/json -->
  76. <dependency>
  77. <groupId>org.json</groupId>
  78. <artifactId>json</artifactId>
  79. <version>20180130</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-servlet-api -->
  82. <dependency>
  83. <groupId>org.apache.tomcat</groupId>
  84. <artifactId>tomcat-servlet-api</artifactId>
  85. <version>9.0.7</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/org.jboss.resteasy/resteasy-jaxrs -->
  88. <dependency>
  89. <groupId>org.jboss.resteasy</groupId>
  90. <artifactId>resteasy-jaxrs</artifactId>
  91. <version>3.5.0.Final</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/org.jboss.resteasy/resteasy-multipart-provider -->
  94. <dependency>
  95. <groupId>org.jboss.resteasy</groupId>
  96. <artifactId>resteasy-multipart-provider</artifactId>
  97. <version>3.5.0.Final</version>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  100. <dependency>
  101. <groupId>com.fasterxml.jackson.core</groupId>
  102. <artifactId>jackson-databind</artifactId>
  103. <version>2.9.5</version>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
  106. <dependency>
  107. <groupId>org.apache.pdfbox</groupId>
  108. <artifactId>pdfbox</artifactId>
  109. <version>2.0.9</version>
  110. </dependency>
  111. <!-- https://mvnrepository.com/artifact/org.apache.tomcat/catalina -->
  112. <dependency>
  113. <groupId>org.apache.tomcat</groupId>
  114. <artifactId>catalina</artifactId>
  115. <version>6.0.53</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.jetbrains</groupId>
  120. <artifactId>annotations</artifactId>
  121. <version>RELEASE</version>
  122. <scope>compile</scope>
  123. </dependency>
  124. </dependencies>
  125.  
  126. <build>
  127. <resources>
  128. <resource>
  129. <directory>src/entities</directory>
  130. <includes>
  131. <include>entities.json</include>
  132. </includes>
  133. </resource>
  134. <resource>
  135. <directory>src/db/</directory>
  136. <includes>
  137. <include>create-db.sql</include>
  138. </includes>
  139. </resource>
  140.  
  141. <resource>
  142. <directory>src/config</directory>
  143. <includes>
  144. <include>
  145. configuration.properties
  146. </include>
  147.  
  148. <include>
  149. linuxConfiguration.properties
  150. </include>
  151.  
  152. <include>
  153. windowsConfiguration.properties
  154. </include>
  155. </includes>
  156. </resource>
  157. </resources>
  158. <sourceDirectory>src</sourceDirectory>
  159. <plugins>
  160. <plugin>
  161. <artifactId>maven-war-plugin</artifactId>
  162. <version>3.1.0</version>
  163. <configuration>
  164. <warSourceDirectory>WebContent</warSourceDirectory>
  165. <failOnMissingWebXml>false</failOnMissingWebXml>
  166. </configuration>
  167. </plugin>
  168. <plugin>
  169. <artifactId>maven-compiler-plugin</artifactId>
  170. <version>3.6.1</version>
  171. <configuration>
  172. <source>1.8</source>
  173. <target>1.8</target>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-project-info-reports-plugin</artifactId>
  179. <version>2.9</version>
  180. <configuration>
  181. <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. <finalName>${project.artifactId}</finalName>
  186. </build>
  187. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement