diff options
author | Kevin Sawicki | 2011-05-12 00:59:05 +0000 |
---|---|---|
committer | Kevin Sawicki | 2011-05-12 00:59:05 +0000 |
commit | 0d93fc473545becca69c0595289ac472afaea68f (patch) | |
tree | d13058e842837a7feb2375cb0a48c798976570ae /org.eclipse.egit.github.core.tests/pom.xml | |
parent | 31e119034516c7674964a6c7c87fedefd57376b8 (diff) | |
download | egit-github-0d93fc473545becca69c0595289ac472afaea68f.tar.gz egit-github-0d93fc473545becca69c0595289ac472afaea68f.tar.xz egit-github-0d93fc473545becca69c0595289ac472afaea68f.zip |
Add new core GitHub API plug-in and unit tests.
This moves the current API unit tests from the mylyn
test plug-in and creates a new package of live tests
that can be run directly against a GitHub instance.
The new core API plug-in has no Eclipse dependencies
and only relies on GSON and Apache Commons HTTP client.
Change-Id: I2b4dc436760818e5fcf1503f7ba80e351aca4fb6
Signed-off-by: Kevin Sawicki <kevin@github.com>
Diffstat (limited to 'org.eclipse.egit.github.core.tests/pom.xml')
-rw-r--r-- | org.eclipse.egit.github.core.tests/pom.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/org.eclipse.egit.github.core.tests/pom.xml b/org.eclipse.egit.github.core.tests/pom.xml new file mode 100644 index 00000000..00bd6426 --- /dev/null +++ b/org.eclipse.egit.github.core.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.egit.github.core.tests</artifactId> + <packaging>eclipse-test-plugin</packaging> + + <name>Eclipse EGit GitHub API 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.egit.github.core.tests</testSuite> + <testClass>org.eclipse.egit.github.core.tests.AllHeadlessTests</testClass> + </configuration> + </plugin> + </plugins> + </build> +</project> |