SSD1306
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.berry120.ssd1306</groupId>
<artifactId>SSD1306</artifactId>
<version>1.0</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.berry120.ssd1306</groupId>
<artifactId>SSD1306</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>SSD1306</name>
<url>https://github.com/berry120/OLEDCodeGenerator</url>
<description>Small utility to generate graphics code for the SSD1306 series of OLED screens from CSV files.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<distributionManagement>
<repository>
<id>bintray-berry120-SSD1306</id>
<name>berry120-SSD1306</name>
<url>https://api.bintray.com/maven/berry120/SSD1306/SSD1306/;publish=1</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>GPL-v3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/berry120/OLEDCodeGenerator</url>
<connection>scm:git:git://github.com/berry120/OLEDCodeGenerator.git</connection>
<developerConnection>scm:git:git@github.com:berry120/OLEDCodeGenerator.git</developerConnection>
</scm>
<developers>
<developer>
<email>berry120@gmail.com</email>
<name>Michael Berry</name>
<url>https://github.com/berry120</url>
<id>berry120</id>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>