Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2015-01-19 18:29:11 +0000
committerRoberto Escobar2015-01-27 17:23:59 +0000
commitcbe1cd8f73f4e560fa568b2a56b6a43058b2ce45 (patch)
tree651057956d3b6e5c7e6eb1a997debe38e17d6ab0 /plugins/org.eclipse.osee.http.jetty.test/pom.xml
parent78625c8127aa3b6617997588ef6302b5d7f06de8 (diff)
downloadorg.eclipse.osee-cbe1cd8f73f4e560fa568b2a56b6a43058b2ce45.tar.gz
org.eclipse.osee-cbe1cd8f73f4e560fa568b2a56b6a43058b2ce45.tar.xz
org.eclipse.osee-cbe1cd8f73f4e560fa568b2a56b6a43058b2ce45.zip
feature[ats_ATS148512]: Configure Jetty HttpService with config admin
Diffstat (limited to 'plugins/org.eclipse.osee.http.jetty.test/pom.xml')
-rw-r--r--plugins/org.eclipse.osee.http.jetty.test/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.http.jetty.test/pom.xml b/plugins/org.eclipse.osee.http.jetty.test/pom.xml
new file mode 100644
index 00000000000..0c74bfc053f
--- /dev/null
+++ b/plugins/org.eclipse.osee.http.jetty.test/pom.xml
@@ -0,0 +1,34 @@
+<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">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.osee</groupId>
+ <artifactId>org.eclipse.osee.x.core.parent</artifactId>
+ <version>0.20.0-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.x.core.parent</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.osee.http.jetty.test</artifactId>
+ <packaging>eclipse-test-plugin</packaging>
+ <name>OSEE HTTP Jetty Test - (Incubation)</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <testSuite>org.eclipse.osee.http.jetty.test</testSuite>
+ <testClass>org.eclipse.osee.http.jetty.AllJettyTestSuite</testClass>
+ <systemProperties combine.children="append">
+ <javax.ws.rs.ext.RuntimeDelegate>org.apache.cxf.jaxrs.impl.RuntimeDelegateImpl</javax.ws.rs.ext.RuntimeDelegate>
+ </systemProperties>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project> \ No newline at end of file

Back to the top