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