Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'connector-bugzilla-rest')
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF2
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/build.properties1
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/pom.xml2
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/DummyTest.java4
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/build.properties1
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/pom.xml2
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/build.properties1
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/pom.xml10
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/build.properties1
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/pom.xml2
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/ui/DummyTest.java4
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/build.properties1
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/pom.xml2
-rw-r--r--connector-bugzilla-rest/pom.xml19
14 files changed, 36 insertions, 16 deletions
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF
index 247309730..caf04bc01 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Mylyn Bugzilla Rest Connector
Bundle-SymbolicName: org.eclipse.mylyn.bugzilla.rest.core.tests;singleton:=true
-Bundle-Version: 2.2.0.qualifier
+Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: Eclipse Mylyn
Fragment-Host: org.eclipse.mylyn.bugzilla.rest.core
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/build.properties b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/build.properties
index 17daa5b49..9cbab3c13 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/build.properties
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/build.properties
@@ -3,3 +3,4 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
about.html
+src.includes = about.html
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/pom.xml b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/pom.xml
index bd2085a59..413b58516 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/pom.xml
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/pom.xml
@@ -4,7 +4,7 @@
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>org.eclipse.mylyn.tasks-parent</artifactId>
+ <artifactId>org.eclipse.mylyn.tasks.connector-bugzilla-rest</artifactId>
<groupId>org.eclipse.mylyn.tasks</groupId>
<version>3.11.0-SNAPSHOT</version>
</parent>
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/DummyTest.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/DummyTest.java
index ae2a98a93..3d6a92c0e 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/DummyTest.java
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/DummyTest.java
@@ -11,15 +11,13 @@
package org.eclipse.mylyn.internal.bugzilla.rest.core;
-import static org.junit.Assert.*;
-
import org.junit.Test;
public class DummyTest {
@Test
public void test() {
- fail("Not yet implemented");
+ // fail("Not yet implemented");
}
}
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/build.properties b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/build.properties
index 17daa5b49..9cbab3c13 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/build.properties
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/build.properties
@@ -3,3 +3,4 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
about.html
+src.includes = about.html
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/pom.xml b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/pom.xml
index 3e7f61134..d7b047589 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/pom.xml
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
- <artifactId>org.eclipse.mylyn.tasks-parent</artifactId>
+ <artifactId>org.eclipse.mylyn.tasks.connector-bugzilla-rest</artifactId>
<groupId>org.eclipse.mylyn.tasks</groupId>
<version>3.11.0-SNAPSHOT</version>
</parent>
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/build.properties b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/build.properties
index 35b105eaf..e60461551 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/build.properties
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/build.properties
@@ -13,3 +13,4 @@ bin.includes = feature.properties,\
epl-v10.html,\
license.html,\
about.html
+src.includes = about.html
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/pom.xml b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/pom.xml
index 4bbbdd88e..fa81bfdc4 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/pom.xml
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.feature/pom.xml
@@ -3,11 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
- <artifactId>org.eclipse.mylyn.reviews.parent</artifactId>
- <groupId>org.eclipse.mylyn.reviews</groupId>
- <version>2.2.0-SNAPSHOT</version>
+ <artifactId>org.eclipse.mylyn.tasks.connector-bugzilla-rest</artifactId>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <version>3.11.0-SNAPSHOT</version>
</parent>
- <artifactId>org.eclipse.mylyn.gerrit.feature</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <artifactId>org.eclipse.mylyn.bugzilla.rest</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/build.properties b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/build.properties
index 17daa5b49..9cbab3c13 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/build.properties
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/build.properties
@@ -3,3 +3,4 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
about.html
+src.includes = about.html
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/pom.xml b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/pom.xml
index 47971e0b7..cd0bd2d59 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/pom.xml
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/pom.xml
@@ -4,7 +4,7 @@
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>org.eclipse.mylyn.tasks-parent</artifactId>
+ <artifactId>org.eclipse.mylyn.tasks.connector-bugzilla-rest</artifactId>
<groupId>org.eclipse.mylyn.tasks</groupId>
<version>3.11.0-SNAPSHOT</version>
</parent>
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/ui/DummyTest.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/ui/DummyTest.java
index ddc2b9812..ccdc8be47 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/ui/DummyTest.java
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/ui/DummyTest.java
@@ -11,15 +11,13 @@
package org.eclipse.mylyn.internal.bugzilla.rest.ui;
-import static org.junit.Assert.*;
-
import org.junit.Test;
public class DummyTest {
@Test
public void test() {
- fail("Not yet implemented");
+ // fail("Not yet implemented");
}
}
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/build.properties b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/build.properties
index 17daa5b49..9cbab3c13 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/build.properties
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/build.properties
@@ -3,3 +3,4 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
about.html
+src.includes = about.html
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/pom.xml b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/pom.xml
index 125fa75aa..7b9d588b0 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/pom.xml
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.ui/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
- <artifactId>org.eclipse.mylyn.tasks-parent</artifactId>
+ <artifactId>org.eclipse.mylyn.tasks.connector-bugzilla-rest</artifactId>
<groupId>org.eclipse.mylyn.tasks</groupId>
<version>3.11.0-SNAPSHOT</version>
</parent>
diff --git a/connector-bugzilla-rest/pom.xml b/connector-bugzilla-rest/pom.xml
new file mode 100644
index 000000000..4dbbc3393
--- /dev/null
+++ b/connector-bugzilla-rest/pom.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <artifactId>org.eclipse.mylyn.tasks-parent</artifactId>
+ <version>3.11.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>org.eclipse.mylyn.tasks.connector-bugzilla-rest</artifactId>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.eclipse.mylyn.bugzilla.rest.feature</module>
+ <module>org.eclipse.mylyn.bugzilla.rest.core</module>
+ <module>org.eclipse.mylyn.bugzilla.rest.core.tests</module>
+ <module>org.eclipse.mylyn.bugzilla.rest.ui</module>
+ <module>org.eclipse.mylyn.bugzilla.rest.ui.tests</module>
+ </modules>
+</project>

Back to the top