Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Overholt2011-03-31 16:45:30 +0000
committerAndrew Overholt2011-03-31 16:45:30 +0000
commitd53198c4152932d194416219b9054a50646983e5 (patch)
treeca749cb2c18b3b580e517c661e927249fcc2e983 /changelog/org.eclipse.linuxtools.changelog.ui.tests
parentdfb4fe1a8d3de2ac9379dc1d54c9bbee3cade470 (diff)
parent359b0f8e5fde468fb728cd11bece0a93e77e3615 (diff)
downloadorg.eclipse.linuxtools-d53198c4152932d194416219b9054a50646983e5.tar.gz
org.eclipse.linuxtools-d53198c4152932d194416219b9054a50646983e5.tar.xz
org.eclipse.linuxtools-d53198c4152932d194416219b9054a50646983e5.zip
Merge in Tycho-ification work
Diffstat (limited to 'changelog/org.eclipse.linuxtools.changelog.ui.tests')
-rw-r--r--changelog/org.eclipse.linuxtools.changelog.ui.tests/.gitignore2
-rw-r--r--changelog/org.eclipse.linuxtools.changelog.ui.tests/ChangeLog5
-rw-r--r--changelog/org.eclipse.linuxtools.changelog.ui.tests/META-INF/MANIFEST.MF4
-rw-r--r--changelog/org.eclipse.linuxtools.changelog.ui.tests/pom.xml55
4 files changed, 64 insertions, 2 deletions
diff --git a/changelog/org.eclipse.linuxtools.changelog.ui.tests/.gitignore b/changelog/org.eclipse.linuxtools.changelog.ui.tests/.gitignore
index e4b178a142..d0083fc232 100644
--- a/changelog/org.eclipse.linuxtools.changelog.ui.tests/.gitignore
+++ b/changelog/org.eclipse.linuxtools.changelog.ui.tests/.gitignore
@@ -4,4 +4,4 @@ javaCompiler...args
build.xml
target
screenshots
-swtbot_tests.log
+swtbot_tests.log \ No newline at end of file
diff --git a/changelog/org.eclipse.linuxtools.changelog.ui.tests/ChangeLog b/changelog/org.eclipse.linuxtools.changelog.ui.tests/ChangeLog
index fc830b0ce1..6a2d140580 100644
--- a/changelog/org.eclipse.linuxtools.changelog.ui.tests/ChangeLog
+++ b/changelog/org.eclipse.linuxtools.changelog.ui.tests/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-29 Andrew Overholt <overholt@redhat.com>
+
+ * META-INF/MANIFEST.MF: Add Subclipse dependencies to have complete dep. chain
+ specified.
+
2011-01-28 Severin Gehwolf <sgehwolf@redhat.com>
* src/org/eclipse/linuxtools/changelog/ui/tests/swtbot/AddChangelogEntrySWTBotTest.java (beforeClass):
diff --git a/changelog/org.eclipse.linuxtools.changelog.ui.tests/META-INF/MANIFEST.MF b/changelog/org.eclipse.linuxtools.changelog.ui.tests/META-INF/MANIFEST.MF
index 9978372edc..a7ccbd8d5e 100644
--- a/changelog/org.eclipse.linuxtools.changelog.ui.tests/META-INF/MANIFEST.MF
+++ b/changelog/org.eclipse.linuxtools.changelog.ui.tests/META-INF/MANIFEST.MF
@@ -10,7 +10,9 @@ Require-Bundle: org.eclipse.swtbot.eclipse.core,
org.hamcrest,
org.apache.log4j,
org.eclipse.swtbot.go,
- org.eclipse.linuxtools.changelog.tests
+ org.eclipse.linuxtools.changelog.tests,
+ org.tigris.subversion.subclipse.ui,
+ org.tigris.subversion.clientadapter.svnkit
Eclipse-RegisterBuddy: org.apache.log4j
Import-Package: org.eclipse.core.resources,
org.eclipse.linuxtools.changelog.tests.fixtures,
diff --git a/changelog/org.eclipse.linuxtools.changelog.ui.tests/pom.xml b/changelog/org.eclipse.linuxtools.changelog.ui.tests/pom.xml
new file mode 100644
index 0000000000..0d1ae4c602
--- /dev/null
+++ b/changelog/org.eclipse.linuxtools.changelog.ui.tests/pom.xml
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Red Hat, Inc.
+
+ 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>linuxtools-changelog-parent</artifactId>
+ <groupId>org.eclipse.linuxtools.changelog</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.changelog.ui.tests</artifactId>
+ <version>2.7.0-SNAPSHOT</version>
+ <packaging>eclipse-test-plugin</packaging>
+
+ <name>Linux Tools ChangeLog UI Tests Plug-in</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>
+ <testSuite>org.eclipse.linuxtools.changelog.ui.tests</testSuite>
+ <testClass>org.eclipse.linuxtools.changelog.ui.tests.swtbot.AllSWTBotTests</testClass>
+ <useUIHarness>true</useUIHarness>
+ <useUIThread>true</useUIThread>
+ <product>org.eclipse.sdk.ide</product>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top