raspberrypi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.locke-chappel.oss.commons</groupId>
<artifactId>raspberrypi</artifactId>
<version>1.0.24</version>
</dependency><?xml version="1.0"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.locke-chappel.oss.commons</groupId>
<artifactId>parent</artifactId>
<version>1.0.24</version>
</parent>
<artifactId>raspberrypi</artifactId>
<version>1.0.24</version>
<name>${project.artifactId}</name>
<description>A collection of Pi4J based GPIO and I2C device implementations</description>
<url>https://github.com/locke-chappel/oss-java-commons-raspberrypi</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<id>locke-chappel</id>
<name>Locke-Chappel</name>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/locke-chappel/oss-commons-raspberrypi/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/locke-chappel/oss-commons-raspberrypi.git</connection>
<developerConnection>scm:git:ssh://github.com:locke-chappel/oss-commons-raspberrypi.git</developerConnection>
<url>https://github.com/locke-chappel/oss-commons-raspberrypi</url>
</scm>
<dependencies>
<dependency>
<groupId>com.pi4j</groupId>
<artifactId>pi4j-core</artifactId>
<version>${com.pi4j.version}</version>
</dependency>
<dependency>
<groupId>com.pi4j</groupId>
<artifactId>pi4j-plugin-raspberrypi</artifactId>
<version>${com.pi4j.version}</version>
</dependency>
<dependency>
<groupId>com.pi4j</groupId>
<artifactId>pi4j-plugin-pigpio</artifactId>
<version>${com.pi4j.version}</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>testing</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
--add-opens io.github.lc.oss.commons.raspberrypi/io.github.lc.oss.commons.raspberrypi.gpio=ALL-UNNAMED
--add-opens io.github.lc.oss.commons.raspberrypi/io.github.lc.oss.commons.raspberrypi.i2c=ALL-UNNAMED
--add-opens io.github.lc.oss.commons.raspberrypi/io.github.lc.oss.commons.raspberrypi.util=ALL-UNNAMED
${JacocoArgs}
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>