Last active
December 19, 2015 17:29
-
-
Save rvazquezglez/5991623 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>javagurus.curso.frameworks</groupId> | |
<artifactId>ejemplo.struts2.h2</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>war</packaging> | |
<name>ejemplo.struts2.h2</name> | |
<properties> | |
<struts2.version>2.3.7</struts2.version> | |
<spring.version>3.0.5.RELEASE</spring.version> | |
<struts2.jepert>3.4.0</struts2.jepert> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.struts</groupId> | |
<artifactId>struts2-core</artifactId> | |
<version>${struts2.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.struts</groupId> | |
<artifactId>struts2-config-browser-plugin</artifactId> | |
<version>${struts2.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.struts</groupId> | |
<artifactId>struts2-junit-plugin</artifactId> | |
<version>${struts2.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>commons-logging</groupId> | |
<artifactId>commons-logging</artifactId> | |
<version>1.1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.5</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>servlet-api</artifactId> | |
<version>2.4</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>jsp-api</artifactId> | |
<version>2.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.h2database</groupId> | |
<artifactId>h2</artifactId> | |
<version>1.3.168</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-core</artifactId> | |
<version>3.5.1-Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate.javax.persistence</groupId> | |
<artifactId>hibernate-jpa-2.0-api</artifactId> | |
<version>1.0.1.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-entitymanager</artifactId> | |
<version>3.6.8.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-annotations</artifactId> | |
<version>3.5.6-Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.6.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-core</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-beans</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-orm</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.struts</groupId> | |
<artifactId>struts2-spring-plugin</artifactId> | |
<version>${struts2.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-dbcp</groupId> | |
<artifactId>commons-dbcp</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<!-- Dependencia para manejar respuestas en JSON --> | |
<dependency> | |
<groupId>org.apache.struts</groupId> | |
<artifactId>struts2-json-plugin</artifactId> | |
<version>${struts2.version}</version> | |
</dependency> | |
<!-- Dependencia básica --> | |
<dependency> | |
<groupId>com.jgeppert.struts2.jquery</groupId> | |
<artifactId>struts2-jquery-plugin</artifactId> | |
<version>${struts2.jepert}</version> | |
</dependency> | |
<!-- Depedencia para ocupar grid --> | |
<dependency> | |
<groupId>com.jgeppert.struts2.jquery</groupId> | |
<artifactId>struts2-jquery-grid-plugin</artifactId> | |
<version>${struts2.jepert}</version> | |
</dependency> | |
<!-- Dependencia para ocupar TwitterBootstrap --> | |
<dependency> | |
<groupId>com.jgeppert.struts2.bootstrap</groupId> | |
<artifactId>struts2-bootstrap-plugin</artifactId> | |
<version>1.5.2</version> | |
</dependency> | |
<!-- Dependencia de rich text --> | |
<dependency> | |
<groupId>com.jgeppert.struts2.jquery</groupId> | |
<artifactId>struts2-jquery-richtext-plugin</artifactId> | |
<version>${struts2.jepert}</version> | |
</dependency> | |
<!-- Dependencia de tree --> | |
<dependency> | |
<groupId>com.jgeppert.struts2.jquery</groupId> | |
<artifactId>struts2-jquery-tree-plugin</artifactId> | |
<version>${struts2.jepert}</version> | |
</dependency> | |
<!-- Dependencia de jquery mobile --> | |
<dependency> | |
<groupId>com.jgeppert.struts2.jquery</groupId> | |
<artifactId>struts2-jquery-mobile-plugin</artifactId> | |
<version>${struts2.jepert}</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>maven-jetty-plugin</artifactId> | |
<version>6.1.21</version> | |
<configuration> | |
<scanIntervalSeconds>10</scanIntervalSeconds> | |
<scanTargets> | |
<scanTarget>src/main/webapp/WEB-INF</scanTarget> | |
<scanTarget>src/main/webapp/WEB-INF/web.xml</scanTarget> | |
<scanTarget>src/main/resources/struts.xml</scanTarget> | |
<scanTarget>src/main/resources/example.xml</scanTarget> | |
</scanTargets> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment