Skip to content

Commit fcaa2fe

Browse files
gnl42ruspl-afed
authored andcommitted
Convert Bugzilla Connector to JUnit 5 #51
Task-Url: #51
1 parent af684ea commit fcaa2fe

File tree

90 files changed

+4386
-655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+4386
-655
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
4+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5+
<accessrules>
6+
<accessrule kind="accessible" pattern="org/eclipse/mylyn/internal/**"/>
7+
<accessrule kind="accessible" pattern="org/eclipse/core/internal/net/**"/>
8+
</accessrules>
9+
</classpathentry>
10+
<classpathentry kind="src" path="src"/>
11+
<classpathentry kind="output" path="bin"/>
12+
</classpath>
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>org.eclipse.mylyn.commons.sdk.util.junit5</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.pde.ManifestBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.pde.SchemaBuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>org.eclipse.pde.PluginNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
<nature>org.eclipse.pde.api.tools.apiAnalysisNature</nature>
33+
</natures>
34+
<filteredResources>
35+
<filter>
36+
<id>1368069128607</id>
37+
<name></name>
38+
<type>10</type>
39+
<matcher>
40+
<id>org.eclipse.ui.ide.multiFilter</id>
41+
<arguments>1.0-projectRelativePath-matches-false-false-target</arguments>
42+
</matcher>
43+
</filter>
44+
</filteredResources>
45+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
line.separator=\n

mylyn.commons/org.eclipse.mylyn.commons.sdk.util.junit5/.settings/org.eclipse.jdt.core.prefs

Lines changed: 517 additions & 0 deletions
Large diffs are not rendered by default.

mylyn.commons/org.eclipse.mylyn.commons.sdk.util.junit5/.settings/org.eclipse.jdt.ui.prefs

Lines changed: 300 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#Tue Aug 18 22:42:26 PDT 2009
2+
eclipse.preferences.version=1
3+
org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Mon Jun 25 03:02:37 GMT 2007
2+
eclipse.preferences.version=1
3+
project.repository.kind=bugzilla
4+
project.repository.url=https\://bugs.eclipse.org/bugs
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#Tue Apr 15 11:07:59 PDT 2008
2+
compilers.incompatible-environment=1
3+
compilers.p.build=1
4+
compilers.p.deprecated=1
5+
compilers.p.discouraged-class=2
6+
compilers.p.missing-bundle-classpath-entries=1
7+
compilers.p.missing-packages=1
8+
compilers.p.no-required-att=0
9+
compilers.p.not-externalized-att=2
10+
compilers.p.unknown-attribute=0
11+
compilers.p.unknown-class=0
12+
compilers.p.unknown-element=0
13+
compilers.p.unknown-identifier=1
14+
compilers.p.unknown-resource=0
15+
compilers.p.unresolved-ex-points=0
16+
compilers.p.unresolved-import=0
17+
compilers.use-project=true
18+
eclipse.preferences.version=1
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Manifest-Version: 1.0
2+
Automatic-Module-Name: org.eclipse.mylyn.commons.sdk.util.junit5
3+
Bundle-ManifestVersion: 2
4+
Bundle-Name: Mylyn Commons SDK JUnit 5 Utilities
5+
Bundle-SymbolicName: org.eclipse.mylyn.commons.sdk.util.junit5;singleton:=true
6+
Bundle-Version: 4.9.0.qualifier
7+
Bundle-RequiredExecutionEnvironment: JavaSE-21
8+
Export-Package: org.eclipse.mylyn.commons.sdk.util.junit5;x-internal:=true,
9+
org.eclipse.mylyn.commons.sdk.util.junit5.condition,
10+
org.eclipse.mylyn.commons.sdk.util.junit5.extension,
11+
org.eclipse.mylyn.commons.sdk.util.junit5.listener
12+
Import-Package: org.junit.jupiter.api;version="[5.13.1,6.0.0)",
13+
org.junit.jupiter.api.extension;version="[5.13.1,6.0.0)",
14+
org.junit.jupiter.params.provider;version="[5.13.1,6.0.0)",
15+
org.junit.platform.engine;version="[1.13.0,2.0.0)",
16+
org.junit.platform.engine.support.descriptor;version="[1.13.0,2.0.0)",
17+
org.junit.platform.launcher;version="[1.13.0,2.0.0)",
18+
org.junit.platform.launcher.listeners;version="[1.13.0,2.0.0)",
19+
org.opentest4j;version="[1.3.0,2.0.0)"
20+
Require-Bundle: org.eclipse.mylyn.commons.sdk.util;bundle-version="4.9.0"
21+
Bundle-Vendor: Eclipse Mylyn

0 commit comments

Comments
 (0)