forked from openhab/openhab-addons
-
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.
[systeminfo] Migrate to BND (openhab#5455)
* Migrate systeminfo to bnd * fix dependencies, update JNA, fix tests (openhab#8) Signed-off-by: Jan N. Klug <[email protected]>
- Loading branch information
Showing
43 changed files
with
231 additions
and
268 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
7 changes: 0 additions & 7 deletions
7
addons/binding/org.openhab.binding.systeminfo.test/.classpath
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
addons/binding/org.openhab.binding.systeminfo.test/META-INF/MANIFEST.MF
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
addons/binding/org.openhab.binding.systeminfo.test/build.properties
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
...ns/binding/org.openhab.binding.systeminfo.test/org.openhab.binding.systeminfo.test.launch
This file was deleted.
Oops, something went wrong.
76 changes: 0 additions & 76 deletions
76
addons/binding/org.openhab.binding.systeminfo.test/pom.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
addons/binding/org.openhab.binding.systeminfo/ESH-INF/binding/binding.xml
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
addons/binding/org.openhab.binding.systeminfo/META-INF/MANIFEST.MF
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
addons/binding/org.openhab.binding.systeminfo/OSGI-INF/.gitignore
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
addons/binding/org.openhab.binding.systeminfo/build.properties
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-2.41 MB
addons/binding/org.openhab.binding.systeminfo/lib/jna-platform-5.2.0.jar
Binary file not shown.
Binary file removed
BIN
-394 KB
addons/binding/org.openhab.binding.systeminfo/lib/oshi-core-3.13.0.jar
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
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
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,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="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="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="output" path="target/classes"/> | ||
</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
File renamed without changes.
File renamed without changes.
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,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.openhab.addons.bundles</groupId> | ||
<artifactId>org.openhab.addons.reactor.bundles</artifactId> | ||
<version>2.5.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>org.openhab.binding.systeminfo</artifactId> | ||
|
||
<name>openHAB Add-ons :: Bundles :: Systeminfo Binding</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>net.java.dev.jna</groupId> | ||
<artifactId>jna-platform</artifactId> | ||
<version>5.3.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.java.dev.jna</groupId> | ||
<artifactId>jna</artifactId> | ||
<version>5.3.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.oshi</groupId> | ||
<artifactId>oshi-core</artifactId> | ||
<version>3.13.0</version> | ||
<scope>provided</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.