Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-04-15 15:48:45 +0000
committerChris Aniszczyk2011-04-15 15:48:45 +0000
commit9a64661d2a7bd33c9150d8e3d1be35c459580435 (patch)
treea18d57170ef245b39197197bc4a028c0ae024136 /org.eclipse.mylyn.github.tests
parent2a0c5f8949b0493b77369e4fa9d1244519982333 (diff)
downloadegit-github-9a64661d2a7bd33c9150d8e3d1be35c459580435.tar.gz
egit-github-9a64661d2a7bd33c9150d8e3d1be35c459580435.tar.xz
egit-github-9a64661d2a7bd33c9150d8e3d1be35c459580435.zip
Add org.eclipse.mylyn.github.tests to the build
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.mylyn.github.tests')
-rw-r--r--org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF3
-rw-r--r--org.eclipse.mylyn.github.tests/pom.xml46
2 files changed, 48 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF
index edc0d052..ad8e4248 100644
--- a/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF
@@ -11,7 +11,8 @@ Require-Bundle: org.junit4;bundle-version="4.5.0",
org.eclipse.mylyn.tasks.ui;bundle-version="3.2.0",
org.eclipse.equinox.security;bundle-version="1.0.100",
org.eclipse.mylyn.tasks.core,
- org.eclipse.core.runtime;bundle-version="3.5.0"
+ org.eclipse.core.runtime;bundle-version="3.5.0",
+ org.hamcrest;bundle-version="1.1.0"
Bundle-Vendor: Eclipse EGit
Import-Package: com.google.gson;version="1.6.0",
com.google.gson.reflect;version="1.6.0",
diff --git a/org.eclipse.mylyn.github.tests/pom.xml b/org.eclipse.mylyn.github.tests/pom.xml
new file mode 100644
index 00000000..5ce2941f
--- /dev/null
+++ b/org.eclipse.mylyn.github.tests/pom.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+
+<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.mylyn.github</groupId>
+ <artifactId>github-parent</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.mylyn.github.tests</artifactId>
+ <packaging>eclipse-test-plugin</packaging>
+
+ <name>Mylyn GitHub Test Plug-in (Incubation)</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-test-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <excludes>
+ <!-- test mojo matches TestProject be default and treats it as PojoTest -->
+ <exclude>**/Test*.class</exclude>
+ </excludes>
+ <useUIHarness>false</useUIHarness>
+ <useUIThread>false</useUIThread>
+ <testSuite>org.eclipse.mylyn.github.tests</testSuite>
+ <testClass>org.eclipse.mylyn.github.tests.AllHeadlessTests</testClass>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top