11<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" >
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
4- <groupId >com.in28minutes </groupId >
5- <artifactId >in28Minutes-first-webapp </artifactId >
4+ <groupId >curso.java </groupId >
5+ <artifactId >ejemplos-servlet </artifactId >
66 <version >0.0.1-SNAPSHOT</version >
77 <packaging >war</packaging >
88
1818 <artifactId >jstl</artifactId >
1919 <version >1.2</version >
2020 </dependency >
21-
22- <dependency >
21+
22+ <dependency >
2323 <groupId >org.webjars</groupId >
2424 <artifactId >bootstrap</artifactId >
25- <version >3.3.6 </version >
25+ <version >3.4.0 </version >
2626 </dependency >
2727 <dependency >
2828 <groupId >org.webjars</groupId >
3232 </dependencies >
3333
3434 <build >
35- <pluginManagement >
36- <plugins >
37- <plugin >
38- < groupId >org.apache.maven.plugins</ groupId >
39- <artifactId >maven-compiler-plugin</ artifactId >
40- <version >3.2</ version >
41- <configuration >
42- < verbose >true</ verbose >
43- < source >1.7</ source >
44- < target >1.7</ target >
45- < showWarnings >true</ showWarnings >
46- </ configuration >
47- </ plugin >
48- <plugin >
49- <groupId >org.apache.tomcat.maven</ groupId >
50- <artifactId >tomcat7-maven-plugin</ artifactId >
51- < version >2.2</ version >
52- < configuration >
53- < path >/</ path >
54- < contextReloadable >true</ contextReloadable >
55- </ configuration >
56- </plugin >
57- </plugins >
58- </pluginManagement >
35+ <plugins >
36+ <plugin >
37+ <artifactId >maven-compiler- plugin</ artifactId >
38+ < configuration >
39+ <encoding >UTF-8</ encoding >
40+ <source >1.8</ source >
41+ <target >1.8</ target >
42+ </ configuration >
43+ </ plugin >
44+ < plugin >
45+ < groupId >org.eclipse.jetty</ groupId >
46+ < artifactId >jetty-maven-plugin</ artifactId >
47+ <version >9.3.0.v20150612</ version >
48+ <configuration >
49+ <scanIntervalSeconds >10</ scanIntervalSeconds >
50+ <scanTargets >
51+ < scanTarget >src/main/webapp/WEB-INF</ scanTarget >
52+ < scanTarget >src/main/webapp/WEB-INF/web.xml</ scanTarget >
53+ </ scanTargets >
54+ < stopKey / >
55+ <stopPort / >
56+ </configuration >
57+ </plugin >
58+ </plugins >
5959 </build >
6060</project >
0 commit comments