Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.24 KB | None | 0 0
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3.  
  4. <parent>
  5. <groupId>es.xunta.amtega.gaiama</groupId>
  6. <artifactId>gaia-legislacion-application-webapp-springmvc</artifactId>
  7. <version>2.5.0-SNAPSHOT</version>
  8. </parent>
  9.  
  10. <artifactId>gaia-legislacion-application-webapp-springmvc-core</artifactId>
  11. <packaging>war</packaging>
  12.  
  13. <properties>
  14. <!-- eAdmin -->
  15. <es.xunta.amtega.gaiama.commons-util-property-api.version>1.1.0-rc0</es.xunta.amtega.gaiama.commons-util-property-api.version>
  16. <es.xunta.amtega.gaiama.commons-util-property-amtega.version>1.1.0-rc0</es.xunta.amtega.gaiama.commons-util-property-amtega.version>
  17. <es.xunta.amtega.gaiama.commons-util-encode-api.version>1.1.0-rc0</es.xunta.amtega.gaiama.commons-util-encode-api.version>
  18. <es.xunta.amtega.gaiama.commons-util-encode-amtega.version>1.1.0-rc0</es.xunta.amtega.gaiama.commons-util-encode-amtega.version>
  19.  
  20. <es.xunta.amtega.gaiama.legislacion.version>1.0.0-FINAL</es.xunta.amtega.gaiama.legislacion.version>
  21. <es.xunta.amtega.gaiama.seguridad.version>1.0.0-FINAL</es.xunta.amtega.gaiama.seguridad.version>
  22.  
  23. <log4j.version>2.6.2</log4j.version>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. </properties>
  26.  
  27. <build>
  28. <finalName>gaia-legislacion-webapp-${project.version}</finalName>
  29.  
  30. <resources>
  31. <resource>
  32. <directory>src/main/resources</directory>
  33. <includes>
  34. <include>**/*.properties</include>
  35. <include>spring/*</include>
  36. <include>es/**/*.xml</include>
  37. <include>app/*</include>
  38. <include>log4j2.xml</include>
  39. <include>hibernate.cfg.xml</include>
  40. <include>log4j.properties</include>
  41. </includes>
  42. </resource>
  43. </resources>
  44.  
  45. <!-- plugin cambia los valores que van ${} por el correspondiente valor se usa para version -->
  46. <pluginManagement>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-war-plugin</artifactId>
  51. <configuration>
  52. <webResources>
  53. <resource>
  54. <filtering>true</filtering>
  55. <directory>${basedir}/src/main/webapp</directory>
  56. <includes>
  57. <include>**/web.xml</include>
  58. </includes>
  59. </resource>
  60. </webResources>
  61. <warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory>
  62. <webXml>${basedir}/src/main/webapp/WEB-INF/web.xml</webXml>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </pluginManagement>
  67. </build>
  68.  
  69. <dependencyManagement>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.apache.logging.log4j</groupId>
  73. <artifactId>log4j-slf4j-impl</artifactId>
  74. <version>${log4j.version}</version>
  75. </dependency>
  76. </dependencies>
  77. </dependencyManagement>
  78.  
  79. <dependencies>
  80. <!-- AMTEGA -->
  81. <dependency>
  82. <groupId>es.xunta.amtega.gaiama</groupId>
  83. <artifactId>commons-util-property-api</artifactId>
  84. <version>${es.xunta.amtega.gaiama.commons-util-property-api.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>es.xunta.amtega.gaiama</groupId>
  88. <artifactId>commons-util-encode-api</artifactId>
  89. <version>${es.xunta.amtega.gaiama.commons-util-encode-api.version}</version>
  90. </dependency>
  91.  
  92. <!-- Log -->
  93. <dependency>
  94. <groupId>org.slf4j</groupId>
  95. <artifactId>slf4j-api</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.slf4j</groupId>
  99. <artifactId>jcl-over-slf4j</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.logging.log4j</groupId>
  103. <artifactId>log4j-slf4j-impl</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.logging.log4j</groupId>
  107. <artifactId>log4j-web</artifactId>
  108. <version>${log4j.version}</version>
  109. </dependency>
  110.  
  111. <!-- Spring -->
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-context</artifactId>
  115. </dependency>
  116.  
  117. <!-- Spring Security -->
  118. <dependency>
  119. <groupId>org.springframework.security</groupId>
  120. <artifactId>spring-security-web</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.security</groupId>
  124. <artifactId>spring-security-config</artifactId>
  125. </dependency>
  126.  
  127. <!-- librerias integracion cas -->
  128. <dependency>
  129. <groupId>org.springframework.security</groupId>
  130. <artifactId>spring-security-cas-client</artifactId>
  131. <version>3.0.8.RELEASE</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.security</groupId>
  135. <artifactId>spring-security-cas</artifactId>
  136. <version>${org.springframework.security-version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.jasig.cas.client</groupId>
  140. <artifactId>cas-client-core</artifactId>
  141. <version>3.4.1</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.jasig.cas.client</groupId>
  145. <artifactId>cas-client-integration-jboss</artifactId>
  146. <version>3.4.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.jasig.cas</groupId>
  150. <artifactId>cas-server-security-filter</artifactId>
  151. <version>2.0.4</version>
  152. </dependency>
  153.  
  154. <!-- Spring AOP -->
  155. <dependency>
  156. <groupId>org.springframework</groupId>
  157. <artifactId>spring-aop</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.aspectj</groupId>
  161. <artifactId>aspectjrt</artifactId>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.aspectj</groupId>
  165. <artifactId>aspectjweaver</artifactId>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework.security</groupId>
  169. <artifactId>spring-security-taglibs</artifactId>
  170. </dependency>
  171.  
  172. <!-- JSP + JSTL -->
  173. <dependency>
  174. <groupId>javax.servlet.jsp</groupId>
  175. <artifactId>jsp-api</artifactId>
  176. </dependency>
  177. <dependency>
  178. <groupId>javax.servlet</groupId>
  179. <artifactId>jstl</artifactId>
  180. </dependency>
  181.  
  182. <!-- ****** START - Runtime ****** -->
  183. <!-- eadmin -->
  184. <dependency>
  185. <groupId>es.xunta.amtega.gaiama</groupId>
  186. <artifactId>commons-util-property-amtega</artifactId>
  187. <version>${es.xunta.amtega.gaiama.commons-util-property-amtega.version}</version>
  188. <scope>runtime</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>es.xunta.amtega.gaiama</groupId>
  192. <artifactId>commons-util-encode-amtega</artifactId>
  193. <version>${es.xunta.amtega.gaiama.commons-util-encode-amtega.version}</version>
  194. <scope>runtime</scope>
  195. </dependency>
  196. <!-- ****** END - Runtime ****** -->
  197.  
  198. <!-- ****** START - Provided ****** -->
  199. <!-- JAX-RS -->
  200. <dependency>
  201. <groupId>javax.ws.rs</groupId>
  202. <artifactId>jsr311-api</artifactId>
  203. <version>1.1.1</version>
  204. <scope>provided</scope>
  205. </dependency>
  206. <!-- RESTeasy (Included on JBoss) -->
  207. <dependency>
  208. <groupId>org.jboss.resteasy</groupId>
  209. <artifactId>resteasy-jaxrs</artifactId>
  210. <version>2.3.7.Final</version>
  211. <scope>provided</scope>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.apache.httpcomponents</groupId>
  215. <artifactId>httpcore</artifactId>
  216. <version>4.2.1-redhat-1</version>
  217. <scope>provided</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.apache.httpcomponents</groupId>
  221. <artifactId>httpclient</artifactId>
  222. <version>4.2.1-redhat-1</version>
  223. <scope>provided</scope>
  224. </dependency>
  225. <!-- ****** END - Provided ****** -->
  226.  
  227. <!-- ****** START - Test ****** -->
  228. <dependency>
  229. <groupId>junit</groupId>
  230. <artifactId>junit</artifactId>
  231. <scope>test</scope>
  232. </dependency>
  233. <!-- ****** END - Test ****** -->
  234.  
  235. <!-- gaima -->
  236. <dependency>
  237. <groupId>es.xunta.amtega.gaiama</groupId>
  238. <artifactId>commons-controller</artifactId>
  239. <version>1.1.0-rc0</version>
  240. </dependency>
  241.  
  242. <dependency>
  243. <groupId>es.xunta.amtega.gaiama</groupId>
  244. <artifactId>gaia-legislacion-api</artifactId>
  245. <version>${es.xunta.amtega.gaiama.legislacion.version}</version>
  246. </dependency>
  247.  
  248. <dependency>
  249. <groupId>es.xunta.amtega.gaiama</groupId>
  250. <artifactId>gaia-legislacion-engine-core</artifactId>
  251. <version>${es.xunta.amtega.gaiama.legislacion.version}</version>
  252. <scope>runtime</scope>
  253. </dependency>
  254.  
  255. <dependency>
  256. <groupId>es.xunta.amtega.gaiama</groupId>
  257. <artifactId>gaia-legislacion-engine-module-service-engine-module-converter-jpa-dozer</artifactId>
  258. <version>${es.xunta.amtega.gaiama.legislacion.version}</version>
  259. <scope>runtime</scope>
  260. </dependency>
  261.  
  262. <dependency>
  263. <groupId>es.xunta.amtega.gaiama</groupId>
  264. <artifactId>gaia-legislacion-engine-module-service-engine-module-persistence-jpa-core</artifactId>
  265. <version>${es.xunta.amtega.gaiama.legislacion.version}</version>
  266. <scope>runtime</scope>
  267. </dependency>
  268.  
  269. <dependency>
  270. <groupId>es.xunta.amtega.gaiama</groupId>
  271. <artifactId>gaia-seguridad-api</artifactId>
  272. <version>${es.xunta.amtega.gaiama.seguridad.version}</version>
  273. </dependency>
  274.  
  275. <dependency>
  276. <groupId>es.xunta.amtega.gaiama</groupId>
  277. <artifactId>gaia-seguridad-engine-core</artifactId>
  278. <version>${es.xunta.amtega.gaiama.seguridad.version}</version>
  279. </dependency>
  280.  
  281. <dependency>
  282. <groupId>es.xunta.amtega.gaiama</groupId>
  283. <artifactId>gaia-seguridad-engine-module-converter-jpa-dozer</artifactId>
  284. <version>${es.xunta.amtega.gaiama.seguridad.version}</version>
  285. </dependency>
  286.  
  287. <dependency>
  288. <groupId>es.xunta.amtega.gaiama</groupId>
  289. <artifactId>gaia-seguridad-engine-module-persistence-jpa-core</artifactId>
  290. <version>${es.xunta.amtega.gaiama.seguridad.version}</version>
  291. </dependency>
  292.  
  293. <dependency>
  294. <groupId>es.xunta.amtega.transversal.firma</groupId>
  295. <artifactId>xuntax509lib</artifactId>
  296. <version>2.2.4</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>es.xunta.amtega.transversal.firma</groupId>
  300. <artifactId>wsetramite_client</artifactId>
  301. <version>2.2.0</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.springframework</groupId>
  305. <artifactId>spring-webmvc</artifactId>
  306. <version>4.0.5.RELEASE</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.springframework</groupId>
  310. <artifactId>spring-web</artifactId>
  311. <version>4.0.5.RELEASE</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.codehaus.jackson</groupId>
  315. <artifactId>jackson-mapper-asl</artifactId>
  316. <version>1.9.11</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>javax.servlet</groupId>
  320. <artifactId>servlet-api</artifactId>
  321. <version>2.5</version>
  322. <scope>provided</scope>
  323. </dependency>
  324. <dependency>
  325. <groupId>javax.validation</groupId>
  326. <artifactId>validation-api</artifactId>
  327. </dependency>
  328. <dependency>
  329. <groupId>com.oracle</groupId>
  330. <artifactId>ojdbc6</artifactId>
  331. <version>11.2.0.4</version>
  332. </dependency>
  333.  
  334. <dependency>
  335. <groupId>org.hibernate</groupId>
  336. <artifactId>hibernate-entitymanager</artifactId>
  337. </dependency>
  338. <!-- Apache Commons FileUpload -->
  339. <dependency>
  340. <groupId>commons-fileupload</groupId>
  341. <artifactId>commons-fileupload</artifactId>
  342. </dependency>
  343.  
  344. <dependency>
  345. <groupId>commons-io</groupId>
  346. <artifactId>commons-io</artifactId>
  347. <version>2.5</version>
  348. </dependency>
  349.  
  350. <!-- Hibernate Validator -->
  351. <dependency>
  352. <groupId>org.hibernate</groupId>
  353. <artifactId>hibernate-validator</artifactId>
  354. </dependency>
  355. </dependencies>
  356. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement