Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2012-11-29 18:22:33 +0000
committerRoberto E. Escobar2012-11-29 18:22:33 +0000
commit77c5195d10913adbf512efb066a58d35022db80b (patch)
tree5b980b7e7f7987cf4e07bbc5283328df1f8943ba /plugins/org.eclipse.osee.ats.core.test/pom.xml
parentc2b5c34f406285f5a67e06aaf5c75a0686425234 (diff)
downloadorg.eclipse.osee-77c5195d10913adbf512efb066a58d35022db80b.tar.gz
org.eclipse.osee-77c5195d10913adbf512efb066a58d35022db80b.tar.xz
org.eclipse.osee-77c5195d10913adbf512efb066a58d35022db80b.zip
feature[ats_TL5SF]: Add ATS tests to maven
Create ATS client integration test bundle Separate junit tests from integration tests Add profile to build ATS individually Move enumerations from support.test.util into ats.client.demo Change-Id: I12dc0b9e2e144413e2272043adfd39920ada6f96
Diffstat (limited to 'plugins/org.eclipse.osee.ats.core.test/pom.xml')
-rw-r--r--plugins/org.eclipse.osee.ats.core.test/pom.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ats.core.test/pom.xml b/plugins/org.eclipse.osee.ats.core.test/pom.xml
new file mode 100644
index 00000000000..2ef2eca96a9
--- /dev/null
+++ b/plugins/org.eclipse.osee.ats.core.test/pom.xml
@@ -0,0 +1,31 @@
+<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.ats.parent</artifactId>
+ <version>0.11.0-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.ats.parent</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.osee.ats.core.test</artifactId>
+ <packaging>eclipse-test-plugin</packaging>
+ <name>OSEE ATS Core 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.ats.core.test</testSuite>
+ <testClass>org.eclipse.osee.ats.core.AllAtsCoreTestSuite</testClass>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project> \ No newline at end of file

Back to the top