|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>org.devdom</groupId> |
6 | | - <version>1.0.5</version> |
| 6 | + <version>2.2.0</version> |
7 | 7 | <artifactId>skills-devdom</artifactId> |
| 8 | + <packaging>war</packaging> |
| 9 | + <name>Dev Dom Skills</name> |
8 | 10 | <properties> |
9 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
10 | 12 | <jersey-version>1.17.1</jersey-version> |
11 | 13 | <jetty-version>8.0.0.M3</jetty-version> |
12 | | - <jsf-version>2.1.26</jsf-version> |
| 14 | + <jsf-version>2.2.6</jsf-version> |
13 | 15 | </properties> |
14 | 16 | <dependencies> |
15 | 17 | <!-- Jetty --> |
|
18 | 20 | <artifactId>jetty-webapp</artifactId> |
19 | 21 | <version>${jetty-version}</version> |
20 | 22 | </dependency> |
21 | | - |
22 | 23 | <dependency> |
23 | 24 | <groupId>org.eclipse.jetty</groupId> |
24 | 25 | <artifactId>jetty-servlet</artifactId> |
|
32 | 33 | <scope>compile</scope> |
33 | 34 | <type>jar</type> |
34 | 35 | </dependency> |
35 | | - |
36 | 36 | <dependency> |
37 | 37 | <groupId>com.sun.jersey</groupId> |
38 | 38 | <artifactId>jersey-json</artifactId> |
39 | 39 | <version>${jersey-version}</version> |
40 | 40 | <scope>compile</scope> |
41 | 41 | <type>jar</type> |
42 | 42 | </dependency> |
43 | | - |
44 | 43 | <dependency> |
45 | 44 | <groupId>com.sun.jersey</groupId> |
46 | 45 | <artifactId>jersey-servlet</artifactId> |
47 | 46 | <version>${jersey-version}</version> |
48 | 47 | <scope>compile</scope> |
49 | 48 | <type>jar</type> |
50 | 49 | </dependency> |
51 | | - |
52 | 50 | <dependency> |
53 | 51 | <groupId>com.sun.jersey</groupId> |
54 | 52 | <artifactId>jersey-client</artifactId> |
|
58 | 56 | <dependency> |
59 | 57 | <groupId>mysql</groupId> |
60 | 58 | <artifactId>mysql-connector-java</artifactId> |
61 | | - <version>5.1.26</version> |
| 59 | + <version>5.1.30</version> |
62 | 60 | </dependency> |
63 | | - |
| 61 | + <!-- JPA --> |
64 | 62 | <dependency> |
65 | 63 | <groupId>toplink.essentials</groupId> |
66 | 64 | <artifactId>toplink-essentials</artifactId> |
67 | 65 | <version>2.1-60f</version> |
68 | | - </dependency> |
69 | | - |
| 66 | + </dependency> |
70 | 67 | <dependency> |
71 | 68 | <groupId>org.eclipse.persistence</groupId> |
72 | 69 | <artifactId>eclipselink</artifactId> |
73 | | - <version>2.3.2</version> |
| 70 | + <version>2.5.1</version> |
74 | 71 | </dependency> |
75 | | - |
76 | 72 | <dependency> |
77 | 73 | <groupId>org.eclipse.persistence</groupId> |
78 | 74 | <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId> |
79 | | - <version>2.3.2</version> |
80 | | - </dependency> |
81 | | - |
| 75 | + <version>2.5.1</version> |
| 76 | + </dependency> |
82 | 77 | <dependency> |
83 | 78 | <groupId>org.eclipse.persistence</groupId> |
84 | 79 | <artifactId>javax.persistence</artifactId> |
85 | 80 | <version>2.1.0</version> |
86 | 81 | </dependency> |
87 | | - |
88 | | - <dependency> |
89 | | - <groupId>org.eclipse.persistence</groupId> |
90 | | - <artifactId>org.eclipse.persistence.core</artifactId> |
91 | | - <version>2.5.1</version> |
92 | | - </dependency> |
93 | | - |
| 82 | + <!-- Faces --> |
94 | 83 | <dependency> |
95 | 84 | <groupId>com.sun.faces</groupId> |
96 | 85 | <artifactId>jsf-api</artifactId> |
97 | 86 | <version>${jsf-version}</version> |
98 | 87 | </dependency> |
99 | | - |
100 | 88 | <dependency> |
101 | 89 | <groupId>com.sun.faces</groupId> |
102 | 90 | <artifactId>jsf-impl</artifactId> |
103 | 91 | <version>${jsf-version}</version> |
104 | 92 | </dependency> |
105 | | - |
| 93 | + <!-- EL 2 --> |
| 94 | + <dependency> |
| 95 | + <groupId>javax.el</groupId> |
| 96 | + <artifactId>el-api</artifactId> |
| 97 | + <version>2.2</version> |
| 98 | + <scope>provided</scope> |
| 99 | + </dependency> |
| 100 | + <!-- Servlet --> |
106 | 101 | <dependency> |
107 | 102 | <groupId>javax.servlet</groupId> |
108 | 103 | <artifactId>jstl</artifactId> |
109 | 104 | <version>1.2</version> |
110 | 105 | </dependency> |
111 | | - |
112 | 106 | <dependency> |
113 | 107 | <groupId>javax.servlet</groupId> |
114 | 108 | <artifactId>servlet-api</artifactId> |
115 | 109 | <version>2.5</version> |
| 110 | + <scope>provided</scope> |
116 | 111 | </dependency> |
117 | | - |
| 112 | + <dependency> |
| 113 | + <groupId>javax</groupId> |
| 114 | + <artifactId>javaee-api</artifactId> |
| 115 | + <version>7.0</version> |
| 116 | + <scope>provided</scope> |
| 117 | + </dependency> |
118 | 118 | <dependency> |
119 | 119 | <groupId>javax.servlet.jsp</groupId> |
120 | 120 | <artifactId>jsp-api</artifactId> |
121 | 121 | <version>2.2</version> |
122 | 122 | </dependency> |
123 | | - |
124 | | - <dependency> |
125 | | - <groupId>org.glassfish.web</groupId> |
126 | | - <artifactId>el-impl</artifactId> |
127 | | - <version>2.2</version> |
128 | | - </dependency> |
129 | | - |
130 | 123 | <!-- jUnit --> |
131 | 124 | <dependency> |
132 | 125 | <groupId>junit</groupId> |
|
137 | 130 | </dependencies> |
138 | 131 | <build> |
139 | 132 | <plugins> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-war-plugin</artifactId> |
| 136 | + <version>2.4</version> |
| 137 | + <configuration> |
| 138 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 139 | + </configuration> |
| 140 | + </plugin> |
140 | 141 | <plugin> |
141 | 142 | <groupId>org.apache.maven.plugins</groupId> |
142 | 143 | <artifactId>maven-dependency-plugin</artifactId> |
|
158 | 159 | <target>1.7</target> |
159 | 160 | </configuration> |
160 | 161 | </plugin> |
| 162 | + <plugin> |
| 163 | + <groupId>org.mortbay.jetty</groupId> |
| 164 | + <artifactId>maven-jetty-plugin</artifactId> |
| 165 | + <version>6.1.26</version> |
| 166 | + <configuration> |
| 167 | + <webapp>${basedir}/target/developer-skills.war</webapp> |
| 168 | + </configuration> |
| 169 | + </plugin> |
161 | 170 | </plugins> |
162 | 171 | <pluginManagement> |
163 | 172 | <plugins> |
|
0 commit comments