-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Juergen Albert <j.albert@data-in-motion.biz>
- Loading branch information
1 parent
851fcf3
commit 87a8981
Showing
77 changed files
with
11,243 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
backend/org.eclipse.sensinact.gateway.core.geo-json.model.test/.classpath
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"> | ||
<attributes> | ||
<attribute name="module" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="aQute.bnd.classpath.container"/> | ||
<classpathentry kind="src" output="bin" path="src"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
23 changes: 23 additions & 0 deletions
23
backend/org.eclipse.sensinact.gateway.core.geo-json.model.test/.project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>org.eclipse.sensinact.gateway.core.geo-json.model.test</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>bndtools.core.bndbuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
<nature>bndtools.core.bndnature</nature> | ||
</natures> | ||
</projectDescription> |
7 changes: 7 additions & 0 deletions
7
...pse.sensinact.gateway.core.geo-json.model.test/.settings/org.eclipse.core.resources.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eclipse.preferences.version=1 | ||
encoding//.settings/org.eclipse.core.resources.prefs=UTF-8 | ||
encoding//src/org/eclipse/sensinact/gateway/core/geo_json/model/test/GeoJsonTest.java=UTF-8 | ||
encoding/<project>=UTF-8 | ||
encoding/bnd.bnd=UTF-8 | ||
encoding/build.gradle=UTF-8 | ||
encoding/test.bndrun=UTF-8 |
11 changes: 11 additions & 0 deletions
11
...g.eclipse.sensinact.gateway.core.geo-json.model.test/.settings/org.eclipse.jdt.core.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | ||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | ||
org.eclipse.jdt.core.compiler.compliance=17 | ||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate | ||
org.eclipse.jdt.core.compiler.debug.localVariable=generate | ||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning | ||
org.eclipse.jdt.core.compiler.release=enabled | ||
org.eclipse.jdt.core.compiler.source=17 |
19 changes: 19 additions & 0 deletions
19
backend/org.eclipse.sensinact.gateway.core.geo-json.model.test/bnd.bnd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Test-Cases: ${classes;HIERARCHY_INDIRECTLY_ANNOTATED;org.junit.platform.commons.annotation.Testable;CONCRETE} | ||
|
||
-library: enableOSGi-Test,\ | ||
enable-emf | ||
|
||
# sets the usually required buildpath using the bnd library, you can extend it with the normal -buildpath to your liking | ||
-buildpath: \ | ||
org.osgi.framework;version=latest,\ | ||
org.eclipse.sensinact.gateway.core.geo-json.model;version=snapshot,\ | ||
org.gecko.emf.util.annotations;version=latest,\ | ||
org.eclipse.emfcloud.emfjson-jackson | ||
|
||
Private-Package: org.eclipse.sensinact.gateway.core.geo_json.model.test | ||
|
||
Bundle-Version: 1.0.0.SNAPSHOT | ||
|
||
# Sometimes without DynamicImport Mockito will not find certain classes | ||
#DynamicImport-Package: *,\ | ||
|
8 changes: 8 additions & 0 deletions
8
backend/org.eclipse.sensinact.gateway.core.geo-json.model.test/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
def resolveTask = tasks.named("resolve.test") { | ||
outputBndrun = layout.buildDirectory.file("test.bndrun") | ||
} | ||
|
||
tasks.named("testOSGi") { | ||
bndrun = resolveTask.flatMap { it.outputBndrun } | ||
} |
Oops, something went wrong.