You can download pi4j-example-0.0.5.jar in this page.
Open Source
pi4j-example-0.0.5.jar file has the following types.
BlinkGpioExample.class BlinkTriggerGpioExample.class ControlGpioExample.class CylonGpioExample.class FrequencyGpioExample.class I2CWiiMotionPlusExample.class LICENSE.txt LcdExample.class ListenGpioExample.class ListenMultipleGpioExample.class MCP23017GpioExample.class MCP23S17GpioExample.class META-INF/MANIFEST.MF META-INF/maven/com.pi4j/pi4j-example/pom.properties META-INF/maven/com.pi4j/pi4j-example/pom.xml MultipurposePinGpioExample.class NOTICE.txt OlimexGpioExample.class PCF8574GpioExample.class PiFaceExample.class PiFaceGpioExample.class README.md SerialExample.class ShutdownGpioExample.class StepperMotorGpioExample.class SystemInfoExample.class TriggerGpioExample.class UsageGpioExample.class WiringPiGpioExample.class WiringPiGpioInterruptExample.class WiringPiLcdExample.class WiringPiSPIExample.class WiringPiSerialExample.class WiringPiSoftPWMExample.class
pi4j-example-0.0.5.pom file content.
<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> <!-- MAVEN ARTIFACT INFORMATION --> <artifactId>pi4j-example</artifactId> <name>Pi4J :: Java Examples</name> <description>Pi4J Java Examples using the Pi4J Library</description> <packaging>jar</packaging> <parent> <groupId>com.pi4j</groupId> <artifactId>pi4j-parent</artifactId> <version>0.0.5</version> </parent> <!-- DEPENDENCIES --> <dependencies> <!-- START SNIPPET: maven-dependency-snippet --> <dependency> <groupId>com.pi4j</groupId> <artifactId>pi4j-core</artifactId> <version>${project.version}</version> </dependency> <!-- END SNIPPET: maven-dependency-snippet --> <dependency> <groupId>com.pi4j</groupId> <artifactId>pi4j-gpio-extension</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.pi4j</groupId> <artifactId>pi4j-device</artifactId> <version>${project.version}</version> </dependency> </dependencies> <!-- BUILD INSTRUCTIONS --> <build> <resources> <resource> <directory>${project.build.directory}</directory> <filtering>false</filtering> <includes> <include>LICENSE.txt</include> <include>NOTICE.txt</include> <include>README.md</include> </includes> </resource> </resources> <plugins> <!-- JAVA COMPILER --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <!-- INCLUDE SOURCE JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <!-- INCLUDE JAVADOC JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <!-- GENERATE LICENSE HEADERS IN SOURCE FILES --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <!-- DOWNLOAD LICENSE, README & NOTICE ARTIFACTS --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <!-- OPTIONALLY DEPLOY THE FINAL JAR TO THE RASBERRY PI --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <!-- copy the compiled JAR file to the Raspberry Pi platform platform --> <execution> <id>transfer-compiled-pi4j-example-jar</id> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.plugin.classpath" /> <if> <equals arg1="${pi.transfer.dev}" arg2="true" /> <then> <!-- ensure the target directory exists on the Raspberry Pi --> <sshexec host="${pi.host.dev}" port="${pi.port.dev}" username="${pi.user.dev}" password="${pi.password.dev}" trust="true" failonerror="false" verbose="true" command="mkdir --parents ${pi.dirCopyTo.dev}" /> <!-- copy the JAR file to the Raspberry Pi --> <scp file="${project.build.directory}/${project.build.finalName}.jar" todir="${pi.user.dev}:${pi.password.dev}@${pi.host.dev}:${pi.dirCopyTo.dev}" port="${pi.port.dev}" trust="true" verbose="true" failonerror="true"> </scp> </then> </if> </tasks> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant-jsch</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.42</version> </dependency> <dependency> <groupId>ant-contrib</groupId> <artifactId>ant-contrib</artifactId> <version>20020829</version> </dependency> </dependencies> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-dependency-plugin </artifactId> <versionRange> [2.5.1,) </versionRange> <goals> <goal>copy</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <!-- MAVEN REPOSITORIES --> <!-- START SNIPPET: maven-repository-snippet --> <repositories> <repository> <id>oss-snapshots-repo</id> <name>Sonatype OSS Maven Repository</name> <url>https://oss.sonatype.org/content/groups/public</url> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <!-- END SNIPPET: maven-repository-snippet --> </project>
<dependency> <groupId>com.pi4j</groupId> <artifactId>pi4j-example</artifactId> <version>0.0.5</version> </dependency>
If you think the following pi4j-example-0.0.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download pi4j-example-0.0.5.jar file