forked from sputnikdev/bluetooth-gatt-parser
-
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.
- sputnikdev#15 included - version number bumped to 2.0.0 - org.openhab namespace - dependencies updated to latest versions - updated README - removal of travis Signed-off-by: Kai Kreuzer <[email protected]>
- Loading branch information
1 parent
cd239f9
commit 560f703
Showing
52 changed files
with
174 additions
and
410 deletions.
There are no files selected for viewing
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,2 @@ | ||
.vscode | ||
target |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.sputnikdev</groupId> | ||
<groupId>org.openhab</groupId> | ||
<artifactId>bluetooth-gatt-parser</artifactId> | ||
<version>1.9.5-SNAPSHOT</version> | ||
<version>2.0.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>${project.groupId}:${project.artifactId}</name> | ||
<description>A simple library/framework to work with Bluetooth Smart (BLE) GATT services and characteristics.</description> | ||
<url>https://github.com/sputnikdev/bluetooth-gatt-parser</url> | ||
<url>https://github.com/openhab/bluetooth-gatt-parser</url> | ||
|
||
<licenses> | ||
<license> | ||
|
@@ -18,10 +18,10 @@ | |
</licenses> | ||
|
||
<organization> | ||
<name>Sputnik Dev</name> | ||
<url>http://sputnikdev.org/</url> | ||
<name>openHAB</name> | ||
<url>https://www.openhab.org/</url> | ||
</organization> | ||
<inceptionYear>2017</inceptionYear> | ||
<inceptionYear>2022</inceptionYear> | ||
|
||
<properties> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
|
@@ -37,12 +37,18 @@ | |
<organization>Sputnik Dev</organization> | ||
<organizationUrl>https://sputnikdev.org/</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>Kai Kreuzer</name> | ||
<email>[email protected]</email> | ||
<organization>openHAB</organization> | ||
<organizationUrl>https://www.openhab.org/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/sputnikdev/bluetooth-gatt-parser/tree/master</url> | ||
<connection>scm:git:git@github.com:sputnikdev/bluetooth-gatt-parser.git</connection> | ||
<developerConnection>scm:git:git@github.com:sputnikdev/bluetooth-gatt-parser.git</developerConnection> | ||
<url>https://github.com/openhab/bluetooth-gatt-parser/tree/main</url> | ||
<connection>scm:git:https://github.com/openhab/bluetooth-gatt-parser</connection> | ||
<developerConnection>scm:git:https://github.com/openhab/bluetooth-gatt-parser</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
|
@@ -71,26 +77,6 @@ | |
</repositories> | ||
|
||
<profiles> | ||
<profile> | ||
<id>release-no-deploy</id> | ||
<activation> | ||
<property> | ||
<name>!travis</name> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
<id>sign</id> | ||
<build> | ||
|
@@ -109,13 +95,6 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
<id>build-extras</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
|
@@ -142,17 +121,6 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.7</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
|
@@ -172,17 +140,17 @@ | |
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.7</version> | ||
<version>2.9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-beanutils</groupId> | ||
<artifactId>commons-beanutils</artifactId> | ||
<version>1.9.3</version> | ||
<version>1.9.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>18.0</version> | ||
<version>31.1-jre</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
|
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
34 changes: 7 additions & 27 deletions
34
...attparser/BluetoothGattParserFactory.java → ...attparser/BluetoothGattParserFactory.java
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
5 changes: 1 addition & 4 deletions
5
...parser/CharacteristicFormatException.java → ...parser/CharacteristicFormatException.java
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
Oops, something went wrong.