Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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. <parent>
  5. <groupId>py.com.personal.bc</groupId>
  6. <artifactId>ool</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>ool-business</artifactId>
  10. <packaging>jar</packaging>
  11.  
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-compiler-plugin</artifactId>
  17. <configuration>
  18. <source>1.8</source>
  19. <target>1.8</target>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. </build>
  24.  
  25. <distributionManagement>
  26. <snapshotRepository>
  27. <id>snapshots</id>
  28. <name>Snapshots internos</name>
  29. <url>http://10.150.16.104/nexus/content/repositories/snapshots/</url>
  30. </snapshotRepository>
  31. </distributionManagement>
  32.  
  33. <properties>
  34. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  35. <version.is-testingse>1.0.0</version.is-testingse>
  36. <version.is-common-transactions>3.1.6</version.is-common-transactions>
  37. <version.is-common-utils>1.3.4</version.is-common-utils>
  38. <version.is-common-units>1.2.2-SNAPSHOT</version.is-common-units>
  39. <version.is-voltdb-utils>3.0.2</version.is-voltdb-utils>
  40. <version.voltdbclient>7.3</version.voltdbclient>
  41. <version.jackson>2.4.3</version.jackson>
  42. <version.is-common-constants>1.0.0-SNAPSHOT</version.is-common-constants>
  43. <version.is-common-exceptions>2.0.0</version.is-common-exceptions>
  44. <version.is-common-cache>1.0.0-SNAPSHOT</version.is-common-cache>
  45. <version.is-mybatis-utils>2.0.0</version.is-mybatis-utils>
  46. <version.is-messaging-voltdb>1.1.1-SNAPSHOT</version.is-messaging-voltdb>
  47. <version.is-messaging>3.0.0</version.is-messaging>
  48. <version.ool-model>1.0.0-SNAPSHOT</version.ool-model>
  49. <version.weld-se>2.4.0.Final</version.weld-se>
  50. <version.abonado>2.3.4-SNAPSHOT</version.abonado>
  51. <version.packs>2.1.0-SNAPSHOT</version.packs>
  52. <version.contadores>1.3.5-SNAPSHOT</version.contadores>
  53. <version.saldo>1.9.2-SNAPSHOT</version.saldo>
  54. <version.movimientos-acreditaciones>1.0.0-SNAPSHOT</version.movimientos-acreditaciones>
  55. <version.is-eventos-core>1.1.0-SNAPSHOT</version.is-eventos-core>
  56. <version.notificacion>2.0.1-SNAPSHOT</version.notificacion>
  57. <version.servicio>2.4.3-SNAPSHOT</version.servicio>
  58. <version.tarifas>1.0.2-SNAPSHOT</version.tarifas>
  59. <version.reservas>1.0.1-SNAPSHOT</version.reservas>
  60. <version.initialize>2.0.2</version.initialize>
  61. <version.initialize-ee>1.0.2</version.initialize-ee>
  62. <version.saldo-compartido>1.0.2-SNAPSHOT</version.saldo-compartido>
  63. <version.grupo>1.0.5-SNAPSHOT</version.grupo>
  64. </properties>
  65.  
  66. <dependencies>
  67. <dependency>
  68. <groupId>py.com.personal.bc</groupId>
  69. <artifactId>is-mybatis-utils</artifactId>
  70. <version>${version.is-mybatis-utils}</version>
  71. <scope>provided</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>py.com.personal.bc</groupId>
  75. <artifactId>is-common-cache</artifactId>
  76. <version>${version.is-common-cache}</version>
  77. <scope>provided</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.jboss.weld.se</groupId>
  81. <artifactId>weld-se</artifactId>
  82. <version>${version.weld-se}</version>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>py.com.personal.bc</groupId>
  87. <artifactId>is-common-transactions</artifactId>
  88. <version>${version.is-common-transactions}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>py.com.personal.bc</groupId>
  92. <artifactId>is-common-utils</artifactId>
  93. <version>${version.is-common-utils}</version>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>py.com.personal.bc</groupId>
  98. <artifactId>is-common-units</artifactId>
  99. <version>${version.is-common-units}</version>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>py.com.personal.bc</groupId>
  104. <artifactId>is-common-exceptions</artifactId>
  105. <version>${version.is-common-exceptions}</version>
  106. <scope>provided</scope>
  107. </dependency>
  108.  
  109. <dependency>
  110. <groupId>py.com.personal.bc</groupId>
  111. <artifactId>is-testingse</artifactId>
  112. <version>${version.is-testingse}</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>${groupId}</groupId>
  117. <artifactId>is-voltdb-utils</artifactId>
  118. <version>${version.is-voltdb-utils}</version>
  119. <scope>provided</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.voltdb</groupId>
  123. <artifactId>voltdbclient</artifactId>
  124. <version>${version.voltdbclient}</version>
  125. <scope>provided</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.fasterxml.jackson.core</groupId>
  129. <artifactId>jackson-core</artifactId>
  130. <version>${version.jackson}</version>
  131. <scope>provided</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.fasterxml.jackson.core</groupId>
  135. <artifactId>jackson-annotations</artifactId>
  136. <version>${version.jackson}</version>
  137. <scope>provided</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.fasterxml.jackson.core</groupId>
  141. <artifactId>jackson-databind</artifactId>
  142. <version>${version.jackson}</version>
  143. <scope>provided</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>py.com.personal.bc</groupId>
  147. <artifactId>ool-model</artifactId>
  148. <version>${version.ool-model}</version>
  149. <scope>provided</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>py.com.personal.bc</groupId>
  153. <artifactId>is-messaging</artifactId>
  154. <version>${version.is-messaging}</version>
  155. <scope>provided</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>py.com.personal.bc</groupId>
  159. <artifactId>is-messaging-voltdb</artifactId>
  160. <version>${version.is-messaging-voltdb}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>py.com.personal.bc</groupId>
  164. <artifactId>abonado-business</artifactId>
  165. <version>${version.abonado}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>py.com.personal.bc</groupId>
  169. <artifactId>packs-model</artifactId>
  170. <version>${version.packs}</version>
  171. <scope>provided</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>py.com.personal.bc</groupId>
  175. <artifactId>packs-business</artifactId>
  176. <version>${version.packs}</version>
  177. <scope>provided</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>py.com.personal.bc</groupId>
  181. <artifactId>contadores-model</artifactId>
  182. <version>${version.contadores}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>py.com.personal.bc</groupId>
  186. <artifactId>saldo-business</artifactId>
  187. <version>${version.saldo}</version>
  188. <scope>provided</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>py.com.personal.bc</groupId>
  192. <artifactId>saldo-model</artifactId>
  193. <version>${version.saldo}</version>
  194. <scope>provided</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>${project.groupId}</groupId>
  198. <artifactId>movimientos-acreditaciones-model</artifactId>
  199. <version>${project.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>${project.groupId}</groupId>
  203. <artifactId>movimientos-acreditaciones-business</artifactId>
  204. <version>${project.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>py.com.personal.bc</groupId>
  208. <artifactId>is-eventos-core</artifactId>
  209. <version>${version.is-eventos-core}</version>
  210. <scope>provided</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>py.com.personal.bc</groupId>
  214. <artifactId>notificacion</artifactId>
  215. <version>${version.notificacion}</version>
  216. <scope>provided</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>py.com.personal.bc</groupId>
  220. <artifactId>servicio-model</artifactId>
  221. <version>${version.servicio}</version>
  222. <scope>provided</scope>
  223. </dependency>
  224. <dependency>
  225. <groupId>py.com.personal.bc</groupId>
  226. <artifactId>planes-tarifarios-model</artifactId>
  227. <version>${version.tarifas}</version>
  228. <scope>provided</scope>
  229. </dependency>
  230. <dependency>
  231. <groupId>py.com.personal.bc</groupId>
  232. <artifactId>reservas-model</artifactId>
  233. <version>${version.reservas}</version>
  234. <scope>provided</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>py.com.personal.bc</groupId>
  238. <artifactId>reservas-business</artifactId>
  239. <version>${version.reservas}</version>
  240. <scope>provided</scope>
  241. </dependency>
  242. <dependency>
  243. <groupId>py.com.personal.bc</groupId>
  244. <artifactId>is-initialize</artifactId>
  245. <version>${version.initialize}</version>
  246. <scope>provided</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>py.com.personal.bc</groupId>
  250. <artifactId>is-initialize-ee</artifactId>
  251. <version>${version.initialize-ee}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>py.com.personal.bc</groupId>
  255. <artifactId>saldo-compartido-model</artifactId>
  256. <version>${version.saldo-compartido}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>py.com.personal.bc</groupId>
  260. <artifactId>grupo-model</artifactId>
  261. <version>${version.grupo}</version>
  262. </dependency>
  263. </dependencies>
  264. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement