Skip to content

Commit

Permalink
move DMX binding to new build system
Browse files Browse the repository at this point in the history
Signed-off-by: Jan N. Klug <[email protected]>
  • Loading branch information
J-N-K committed Mar 10, 2019
1 parent ba6b11f commit 9a55c43
Show file tree
Hide file tree
Showing 92 changed files with 159 additions and 317 deletions.
4 changes: 2 additions & 2 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
/addons/binding/org.openhab.binding.denonmarantz/ @jwveldhuis
/addons/binding/org.openhab.binding.digitalstrom/ @MichaelOchel @msiegele
/addons/binding/org.openhab.binding.dlinksmarthome/ @MikeJMajor
/addons/binding/org.openhab.binding.dmx/ @J-N-K
/addons/binding/org.openhab.binding.dmx.test/ @J-N-K
/addons/binding/org.openhab.binding.dscalarm/ @RSStephens
/addons/binding/org.openhab.binding.dsmr/ @Hilbrand
/addons/binding/org.openhab.binding.dsmr.test/ @Hilbrand
Expand Down Expand Up @@ -228,7 +226,9 @@
/addons/voice/org.openhab.voice.voicerss/ @JochenHiller
/bundles/org.openhab.binding.astro/ @gerrieg
/bundles/org.openhab.binding.avmfritz/ @cweitkamp
/bundles/org.openhab.binding.dmx/ @J-N-K
/itests/org.openhab.binding.astro.tests/ @gerrieg
/itests/org.openhab.binding.avmfritz.tests/ @cweitkamp
/itests/org.openhab.binding.dmx.test/ @J-N-K

# PLEASE HELP ADDING FURTHER LINES HERE!
7 changes: 0 additions & 7 deletions addons/binding/org.openhab.binding.dmx.test/.classpath

This file was deleted.

44 changes: 0 additions & 44 deletions addons/binding/org.openhab.binding.dmx.test/META-INF/MANIFEST.MF

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions addons/binding/org.openhab.binding.dmx.test/build.properties

This file was deleted.

This file was deleted.

129 changes: 0 additions & 129 deletions addons/binding/org.openhab.binding.dmx.test/pom.xml

This file was deleted.

7 changes: 0 additions & 7 deletions addons/binding/org.openhab.binding.dmx/.classpath

This file was deleted.

28 changes: 0 additions & 28 deletions addons/binding/org.openhab.binding.dmx/META-INF/MANIFEST.MF

This file was deleted.

1 change: 0 additions & 1 deletion addons/binding/org.openhab.binding.dmx/OSGI-INF/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions addons/binding/org.openhab.binding.dmx/build.properties

This file was deleted.

2 changes: 0 additions & 2 deletions addons/binding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
<module>org.openhab.binding.denonmarantz</module>
<module>org.openhab.binding.digitalstrom</module>
<module>org.openhab.binding.dlinksmarthome</module>
<module>org.openhab.binding.dmx</module>
<module>org.openhab.binding.dmx.test</module>
<module>org.openhab.binding.dscalarm</module>
<module>org.openhab.binding.dsmr</module>
<module>org.openhab.binding.dsmr.test</module>
Expand Down
32 changes: 32 additions & 0 deletions bundles/org.openhab.binding.dmx/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,13 @@
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ds.core.builder</name>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding/<project>=UTF-8
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 9a55c43

Please sign in to comment.