blob: 7d5df432fe47c072098e1e62e9f87e87c98ea4e9 [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001<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/maven-v4_0_0.xsd">
3
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>org.openecomp.sdc</groupId>
6 <artifactId>webseal-simulator</artifactId>
7 <packaging>war</packaging>
8 <version>0.0.1-SNAPSHOT</version>
9
10 <properties>
11 <jetty-version>9.2.10.v20150310</jetty-version>
12 </properties>
13
14 <dependencies>
15 <dependency>
16 <groupId>junit</groupId>
17 <artifactId>junit</artifactId>
18 <version>4.12</version>
19 <scope>test</scope>
20 </dependency>
21
22 <dependency>
23 <groupId>javax.servlet</groupId>
24 <artifactId>servlet-api</artifactId>
25 <version>2.5</version>
26 <scope>compile</scope>
27 </dependency>
28
29 <dependency>
30 <groupId>commons-httpclient</groupId>
31 <artifactId>commons-httpclient</artifactId>
32 <version>3.1</version>
33 </dependency>
34
35 <dependency>
36 <groupId>commons-logging</groupId>
37 <artifactId>commons-logging-api</artifactId>
38 <version>1.0.4</version>
39 </dependency>
40
41 <dependency>
42 <groupId>commons-io</groupId>
43 <artifactId>commons-io</artifactId>
44 <version>2.4</version>
45 </dependency>
46
47 <dependency>
48 <groupId>commons-codec</groupId>
49 <artifactId>commons-codec</artifactId>
50 <version>2.0-SNAPSHOT</version>
51 <scope>compile</scope>
52 </dependency>
53
54 <dependency>
55 <groupId>org.eclipse.jetty</groupId>
56 <artifactId>jetty-proxy</artifactId>
57 <version>9.2.10.v20150310</version>
58 <scope>compile</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>org.eclipse.jetty</groupId>
63 <artifactId>jetty-servlets</artifactId>
64 <version>${jetty-version}</version>
65 <scope>compile</scope>
66 </dependency>
67
68 <!-- Proxy servlet -->
69 <dependency>
70 <groupId>com.typesafe</groupId>
71 <artifactId>config</artifactId>
72 <version>1.0.2</version>
73 <scope>compile</scope>
74 </dependency>
75
76 </dependencies>
77 <build>
78 <finalName>WSSimulator</finalName>
79 <plugins>
80 <!-- ================================================== -->
81 <!-- Set the JDK compiler version. -->
82 <!-- ================================================== -->
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-compiler-plugin</artifactId>
86 <version>2.5.1</version>
87 <inherited>true</inherited>
88 <configuration>
89 <source>1.8</source>
90 <target>1.8</target>
91 </configuration>
92 </plugin>
93
94 <plugin>
95 <groupId>org.eclipse.jetty</groupId>
96 <artifactId>jetty-maven-plugin</artifactId>
97 <version>${jetty-version}</version>
98 <configuration>
99 <contextPath>/</contextPath>
100 <webApp>
101 <contextPath>/</contextPath>
102 <webInfIncludeJarPattern>.*/.*jersey-[^/]\.jar$</webInfIncludeJarPattern>
103 </webApp>
104 <war>WSSimulator.war</war>
105 </configuration>
106 </plugin>
107
108 </plugins>
109 </build>
110</project>