Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.86 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>com.meteor.bob</groupId>
  6. <artifactId>bob</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>bob</name>
  10. <description>Meteor BOB Service</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.13.RELEASE</version>
  15. <relativePath /> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <docker.image.prefix>meteor</docker.image.prefix>
  22. <meteor.util.version>1.2.2-RELEASE-BOB</meteor.util.version>
  23. <meteor.constants.version>1.0.0-SNAPSHOT</meteor.constants.version>
  24. <meteor.transactional.version>1.6.0-SNAPSHOT</meteor.transactional.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.meteor.auditlog.utils</groupId>
  29. <artifactId>auditlog-utils</artifactId>
  30. <version>1.6.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.meteor.sequence.generator</groupId>
  34. <artifactId>sequence-generator</artifactId>
  35. <version>1.5.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-actuator</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-rest</artifactId>
  57. </dependency>
  58. <!-- Dependency for Lombok -->
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <artifactId>lombok</artifactId>
  62. <version>1.18.2</version>
  63. </dependency>
  64. <!-- Dependency for JPA -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-jpa</artifactId>
  68. </dependency>
  69. <!-- Dependency for IBM DB2 Server -->
  70. <dependency>
  71. <groupId>com.ibm.db2.jcc</groupId>
  72. <artifactId>db2jcc4</artifactId>
  73. <version>10.1</version>
  74. </dependency>
  75. <!-- Dependency for Swagger UI -->
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger2</artifactId>
  79. <version>2.9.2</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-swagger-ui</artifactId>
  85. <version>2.9.2</version>
  86. </dependency>
  87. <!-- Dependency for Spring Cloud Feign -->
  88. <dependency>
  89. <groupId>org.springframework.cloud</groupId>
  90. <artifactId>spring-cloud-starter-feign</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.cloud</groupId>
  94. <artifactId>spring-cloud-starter</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-amqp</artifactId>
  99. </dependency>
  100. <!-- Dependency for Meteor Constants -->
  101. <dependency>
  102. <groupId>com.meteor.constants</groupId>
  103. <artifactId>meteor-constants</artifactId>
  104. <version>${meteor.constants.version}</version>
  105. </dependency>
  106. <!-- Dependency for Meteor Transactional -->
  107. <dependency>
  108. <groupId>com.meteor.transactional</groupId>
  109. <artifactId>meteor-transactional</artifactId>
  110. <version>${meteor.transactional.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>net.sf.jasperreports</groupId>
  114. <artifactId>jasperreports</artifactId>
  115. <version>6.4.1</version>
  116. </dependency>
  117. <!--This dependency is required for logback/logstash integration -->
  118. <dependency>
  119. <groupId>net.logstash.logback</groupId>
  120. <artifactId>logstash-logback-encoder</artifactId>
  121. <version>4.6</version>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>ch.qos.logback</groupId>
  125. <artifactId>logback-core</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>ch.qos.logback</groupId>
  129. <artifactId>logback-classic</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>ch.qos.logback</groupId>
  133. <artifactId>logback-access</artifactId>
  134. </exclusion>
  135. </exclusions>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-lang</groupId>
  139. <artifactId>commons-lang</artifactId>
  140. <version>2.6</version>
  141. </dependency>
  142. <!-- https://mvnrepository.com/artifact/xstream/xstream -->
  143. <dependency>
  144. <groupId>xstream</groupId>
  145. <artifactId>xstream</artifactId>
  146. <version>1.2.2</version>
  147. </dependency>
  148. <!-- https://mvnrepository.com/artifact/org.jasypt/jasypt -->
  149. <dependency>
  150. <groupId>org.jasypt</groupId>
  151. <artifactId>jasypt</artifactId>
  152. <version>1.9.2</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.meteor.utils</groupId>
  156. <artifactId>meteor-utils</artifactId>
  157. <version>${meteor.util.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>th.co.geniustree.springdata.jpa</groupId>
  161. <artifactId>specification-with-projections</artifactId>
  162. <version>1.0.6</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.poi</groupId>
  166. <artifactId>poi-ooxml</artifactId>
  167. <version>3.9</version>
  168. <exclusions>
  169. <exclusion>
  170. <groupId>xml-apis</groupId>
  171. <artifactId>xml-apis</artifactId>
  172. </exclusion>
  173. <exclusion>
  174. <groupId>stax</groupId>
  175. <artifactId>stax-api</artifactId>
  176. </exclusion>
  177. </exclusions>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.poi</groupId>
  181. <artifactId>poi</artifactId>
  182. <version>3.9</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>commons-io</groupId>
  186. <artifactId>commons-io</artifactId>
  187. <version>1.4</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.hibernate</groupId>
  191. <artifactId>hibernate-jpamodelgen</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>commons-httpclient</groupId>
  195. <artifactId>commons-httpclient</artifactId>
  196. <version>3.1</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.json</groupId>
  200. <artifactId>json</artifactId>
  201. </dependency>
  202. <dependency>
  203. <groupId>javax.mail</groupId>
  204. <artifactId>mail</artifactId>
  205. <version>1.4.2</version>
  206. <exclusions>
  207. <exclusion>
  208. <groupId>javax.activation</groupId>
  209. <artifactId>activation</artifactId>
  210. </exclusion>
  211. </exclusions>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.springframework</groupId>
  215. <artifactId>spring-context-support</artifactId>
  216. <version>4.1.9.RELEASE</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.jsoup</groupId>
  220. <artifactId>jsoup</artifactId>
  221. <version>1.7.3</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>com.sun.activation</groupId>
  225. <artifactId>javax.activation</artifactId>
  226. <version>1.2.0</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>javax.xml.bind</groupId>
  230. <artifactId>jaxb-api</artifactId>
  231. <version>2.3.1</version>
  232. </dependency>
  233. </dependencies>
  234. <build>
  235. <plugins>
  236. <plugin>
  237. <groupId>org.springframework.boot</groupId>
  238. <artifactId>spring-boot-maven-plugin</artifactId>
  239. </plugin>
  240. <plugin>
  241. <groupId>com.spotify</groupId>
  242. <artifactId>docker-maven-plugin</artifactId>
  243. <version>1.0.0</version>
  244. <configuration>
  245. <imageName>docker.project-meteor.com/${docker.image.prefix}/${project.artifactId}</imageName>
  246. <dockerDirectory>src/main/docker</dockerDirectory>
  247. <resources>
  248. <resource>
  249. <targetPath>/</targetPath>
  250. <directory>${project.build.directory}</directory>
  251. <include>${project.build.finalName}.jar</include>
  252. </resource>
  253. </resources>
  254. <buildArgs>
  255. <PROJECT_NAME>${project.build.finalName}</PROJECT_NAME>
  256. </buildArgs>
  257. <registryUrl>https://docker.project-meteor.com/</registryUrl>
  258. <imageTags>
  259. <imageTag>${project.version}</imageTag>
  260. </imageTags>
  261. <useConfigFile>true</useConfigFile>
  262. <serverId>docker-repo</serverId>
  263. </configuration>
  264. </plugin>
  265. <plugin>
  266. <groupId>org.sonarsource.scanner.maven</groupId>
  267. <artifactId>sonar-maven-plugin</artifactId>
  268. <version>3.2</version>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. <pluginRepositories>
  273. <pluginRepository>
  274. <id>spring-releases</id>
  275. <url>https://repo.spring.io/libs-release</url>
  276. </pluginRepository>
  277. </pluginRepositories>
  278. <dependencyManagement>
  279. <dependencies>
  280. <dependency>
  281. <groupId>org.springframework.cloud</groupId>
  282. <artifactId>spring-cloud-dependencies</artifactId>
  283. <version>Edgware.SR2</version>
  284. <type>pom</type>
  285. <scope>import</scope>
  286. </dependency>
  287. <dependency>
  288. <groupId>com.google.guava</groupId>
  289. <artifactId>guava</artifactId>
  290. <version>20.0</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>ar.com.fdvs</groupId>
  294. <artifactId>DynamicJasper</artifactId>
  295. <version>5.0.5</version>
  296. <exclusions>
  297. <exclusion>
  298. <groupId>net.sf.jasperreports</groupId>
  299. <artifactId>jasperreports</artifactId>
  300. </exclusion>
  301. </exclusions>
  302. </dependency>
  303. </dependencies>
  304. </dependencyManagement>
  305. <distributionManagement>
  306. <repository>
  307. <id>nexusAWS</id>
  308. <name>releases</name>
  309. <url>https://nexus.sxchange.ph/repository/maven-releases</url>
  310. </repository>
  311. <snapshotRepository>
  312. <id>nexusAWS</id>
  313. <name>snapshots</name>
  314. <url>https://nexus.sxchange.ph/repository/maven-snapshots</url>
  315. </snapshotRepository>
  316. </distributionManagement>
  317. <repositories>
  318. <repository>
  319. <id>com.ibm.db2.jcc</id>
  320. <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
  321. </repository>
  322. <repository>
  323. <id>nexus-sxi-all</id>
  324. <name>releases</name>
  325. <url>https://nexus.sxchange.ph/repository/maven-sxi-all</url>
  326. </repository>
  327. <repository>
  328. <id>spring-milestones</id>
  329. <name>Spring Milestones</name>
  330. <url>https://repo.spring.io/milestone</url>
  331. <snapshots>
  332. <enabled>false</enabled>
  333. </snapshots>
  334. </repository>
  335. <repository>
  336. <id>jasper</id>
  337. <url>http://jasperreports.sourceforge.net/maven2/</url>
  338. <releases>
  339. <enabled>true</enabled>
  340. </releases>
  341. <snapshots>
  342. <enabled>false</enabled>
  343. </snapshots>
  344. </repository>
  345. <repository>
  346. <id>jasper1</id>
  347. <url>http://jaspersoft.artifactoryonline.com/jaspersoft/jaspersoft-repo/</url>
  348. <releases>
  349. <enabled>true</enabled>
  350. </releases>
  351. <snapshots>
  352. <enabled>false</enabled>
  353. </snapshots>
  354. </repository>
  355. </repositories>
  356. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement