|
@@ -0,0 +1,59 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<!--
|
|
3
|
+ Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
+ or more contributor license agreements. See the NOTICE file
|
|
5
|
+ distributed with this work for additional information
|
|
6
|
+ regarding copyright ownership. The ASF licenses this file
|
|
7
|
+ to you under the Apache License, Version 2.0 (the
|
|
8
|
+ "License"); you may not use this file except in compliance
|
|
9
|
+ with the License. You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+ http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+ Unless required by applicable law or agreed to in writing,
|
|
14
|
+ software distributed under the License is distributed on an
|
|
15
|
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
+ KIND, either express or implied. See the License for the
|
|
17
|
+ specific language governing permissions and limitations
|
|
18
|
+ under the License.
|
|
19
|
+-->
|
|
20
|
+<!-- $Id: pom.xml 642118 2008-03-28 08:04:16Z reinhard $ -->
|
|
21
|
+<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/maven-v4_0_0.xsd">
|
|
22
|
+
|
|
23
|
+ <modelVersion>4.0.0</modelVersion>
|
|
24
|
+ <packaging>war</packaging>
|
|
25
|
+
|
|
26
|
+ <name>springWeb</name>
|
|
27
|
+ <groupId>org.example</groupId>
|
|
28
|
+ <artifactId>springWeb</artifactId>
|
|
29
|
+ <version>1.0-SNAPSHOT</version>
|
|
30
|
+
|
|
31
|
+ <build>
|
|
32
|
+ <plugins>
|
|
33
|
+ <plugin>
|
|
34
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
35
|
+ <artifactId>maven-jetty-plugin</artifactId>
|
|
36
|
+ <version>6.1.7</version>
|
|
37
|
+ <configuration>
|
|
38
|
+ <connectors>
|
|
39
|
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
|
40
|
+ <port>8888</port>
|
|
41
|
+ <maxIdleTime>30000</maxIdleTime>
|
|
42
|
+ </connector>
|
|
43
|
+ </connectors>
|
|
44
|
+ <webAppSourceDirectory>${project.build.directory}/${pom.artifactId}-${pom.version}</webAppSourceDirectory>
|
|
45
|
+ <contextPath>/</contextPath>
|
|
46
|
+ </configuration>
|
|
47
|
+ </plugin>
|
|
48
|
+ </plugins>
|
|
49
|
+ </build>
|
|
50
|
+
|
|
51
|
+ <dependencies>
|
|
52
|
+ <!--dependency>
|
|
53
|
+ <groupId>org.example</groupId>
|
|
54
|
+ <artifactId>[the artifact id of the block to be mounted]</artifactId>
|
|
55
|
+ <version>1.0-SNAPSHOT</version>
|
|
56
|
+ </dependency-->
|
|
57
|
+ </dependencies>
|
|
58
|
+
|
|
59
|
+</project>
|