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