|
19 | 19 | <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"> |
20 | 20 | <modelVersion>4.0.0</modelVersion> |
21 | 21 | <artifactId>cloud-awsapi</artifactId> |
22 | | - <version>4.1.0-SNAPSHOT</version> |
23 | 22 | <name>Apache CloudStack AWS API Bridge</name> |
| 23 | + <packaging>war</packaging> |
24 | 24 | <parent> |
25 | 25 | <groupId>org.apache.cloudstack</groupId> |
26 | 26 | <artifactId>cloudstack</artifactId> |
|
45 | 45 | </dependency> |
46 | 46 | <dependency> |
47 | 47 | <groupId>org.apache.ws.commons.axiom</groupId> |
48 | | - <artifactId>axiom-api</artifactId> |
| 48 | + <artifactId>axiom-impl</artifactId> |
49 | 49 | <version>${cs.axiom.version}</version> |
50 | 50 | </dependency> |
51 | 51 | <dependency> |
|
57 | 57 | <groupId>org.apache.neethi</groupId> |
58 | 58 | <artifactId>neethi</artifactId> |
59 | 59 | <version>${cs.neethi.version}</version> |
| 60 | + <exclusions> |
| 61 | + <exclusion> |
| 62 | + <groupId>org.apache.ws.commons.axiom</groupId> |
| 63 | + <artifactId>axiom-api</artifactId> |
| 64 | + </exclusion> |
| 65 | + <exclusion> |
| 66 | + <groupId>org.apache.ws.commons.axiom</groupId> |
| 67 | + <artifactId>axiom-impl</artifactId> |
| 68 | + </exclusion> |
| 69 | + </exclusions> |
60 | 70 | </dependency> |
61 | 71 | <dependency> |
62 | 72 | <groupId>com.google.code.gson</groupId> |
|
160 | 170 | <dependency> |
161 | 171 | <groupId>org.slf4j</groupId> |
162 | 172 | <artifactId>slf4j-jdk14</artifactId> |
163 | | - <version>1.5.11</version> |
| 173 | + <version>1.6.1</version> |
164 | 174 | <scope>runtime</scope> |
165 | 175 | </dependency> |
166 | 176 | <dependency> |
167 | 177 | <groupId>org.slf4j</groupId> |
168 | 178 | <artifactId>slf4j-api</artifactId> |
169 | | - <version>1.5.11</version> |
| 179 | + <version>1.6.1</version> |
170 | 180 | <scope>runtime</scope> |
171 | 181 | </dependency> |
172 | 182 | <dependency> |
173 | 183 | <groupId>org.apache.ws.security</groupId> |
174 | 184 | <artifactId>wss4j</artifactId> |
175 | | - <version>1.5.8</version> |
| 185 | + <version>1.6.1</version> |
176 | 186 | <scope>runtime</scope> |
177 | 187 | </dependency> |
178 | 188 | <dependency> |
|
217 | 227 | <version>1.45</version> |
218 | 228 | <scope>runtime</scope> |
219 | 229 | </dependency> |
| 230 | + <dependency> |
| 231 | + <groupId>mysql</groupId> |
| 232 | + <artifactId>mysql-connector-java</artifactId> |
| 233 | + <version>5.1.21</version> |
| 234 | + <scope>runtime</scope> |
| 235 | + </dependency> |
220 | 236 | </dependencies> |
221 | 237 | <build> |
222 | 238 | <defaultGoal>install</defaultGoal> |
|
279 | 295 | </execution> |
280 | 296 | </executions> |
281 | 297 | </plugin> |
| 298 | + <plugin> |
| 299 | + <groupId>org.mortbay.jetty</groupId> |
| 300 | + <artifactId>maven-jetty-plugin</artifactId> |
| 301 | + <version>6.1.26</version> |
| 302 | + <configuration> |
| 303 | + <connectors> |
| 304 | + <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
| 305 | + <port>7080</port> |
| 306 | + <maxIdleTime>60000</maxIdleTime> |
| 307 | + </connector> |
| 308 | + </connectors> |
| 309 | + <contextPath>/awsapi</contextPath> |
| 310 | + <webXml>${basedir}/web/web.xml</webXml> |
| 311 | + <webAppSourceDirectory>${basedir}/target/cloud-awsapi-${project.version}</webAppSourceDirectory> |
| 312 | + </configuration> |
| 313 | + </plugin> |
282 | 314 | </plugins> |
283 | 315 | <!-- |
284 | 316 | <testSourceDirectory>test</testSourceDirectory> |
|
343 | 375 | </plugins> |
344 | 376 | </pluginManagement> |
345 | 377 | </build> |
346 | | - <packaging>war</packaging> |
347 | 378 | </project> |
0 commit comments