paulmann-bt-lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.hypfvieh.paulmann</groupId>
<artifactId>paulmann-bt-lib</artifactId>
<version>0.0.2</version>
</dependency><?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>
<groupId>com.github.hypfvieh.paulmann</groupId>
<artifactId>paulmann-bt-lib</artifactId>
<packaging>jar</packaging>
<version>0.0.2</version>
<name>${project.artifactId}</name>
<description>
Library to control bluetooth actors manufactured by Paulmann GmbH for usage with Paulmann LED stripes.
</description>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.hypfvieh</groupId>
<artifactId>bluez-dbus</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:https://github.com/hypfvieh/paulmann-bt-lib.git</connection>
<developerConnection>scm:git:https://github.com/hypfvieh/paulmann-bt-lib.git</developerConnection>
<url>https://github.com/hypfvieh/paulmann-bt-lib.git</url>
</scm>
<developers>
<developer>
<id>hypfvieh</id>
<name>David M.</name>
<email>hypfvieh@googlemail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<url>https://github.com/hypfvieh/${project.artifactId}</url>
</project>