![JAR search and dependency download from the Maven repository](/logo.png)
ondryaso.ssd1306-core.1.0.source-code.pom.xml Maven / Gradle / Ivy
The newest version!
<?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> <parent> <groupId>org.bidib.eu.ondryaso</groupId> <artifactId>ssd1306-parent</artifactId> <version>1.0</version> </parent> <artifactId>ssd1306-core</artifactId> <packaging>jar</packaging> <name>SSD1306 :: Core</name> <description>SSD1306 :: Core POM</description> <dependencies> <dependency> <groupId>${pi4j.groupId}</groupId> <artifactId>pi4j-core</artifactId> </dependency> <dependency> <groupId>${pi4j.groupId}</groupId> <artifactId>pi4j-device</artifactId> </dependency> <dependency> <groupId>${pi4j.groupId}</groupId> <artifactId>pi4j-gpio-extension</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <includePom>true</includePom> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy