dmx512
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>be.codewriter</groupId> <artifactId>dmx512</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>be.codewriter</groupId> <artifactId>dmx512</artifactId> <version>0.0.1</version> <url>https://github.com/codewriterbv/dmx512</url> <name>DMX512</name> <description>Java library for the DMX512 protocol and Open Fixture Library</description> <packaging>jar</packaging> <properties> <java.version>21</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <!-- Dependencies --> <jackson.version>2.15.2</jackson.version> <jserialcomm.version>2.11.0</jserialcomm.version> <slf4j.version>2.0.17</slf4j.version> <!-- Test dependencies --> <assertj.version>3.27.3</assertj.version> <junit.version>5.10.2</junit.version> <!-- Plugins --> <jreleaser.version>1.13.1</jreleaser.version> <jsonassert.version>1.5.0</jsonassert.version> <maven.source.version>3.2.1</maven.source.version> <maven.surfire.version>2.22.2</maven.surfire.version> </properties> <dependencies> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Serial --> <dependency> <groupId>com.fazecast</groupId> <artifactId>jSerialComm</artifactId> <version>${jserialcomm.version}</version> </dependency> <!-- JSON parsing --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <!-- Tests --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> </dependencies> <licenses> <license> <name>GPL-2.0 license</name> </license> </licenses> <developers> <developer> <name>Frank Delporte</name> <organization>CodeWriter bv</organization> <organizationUrl>https://codewriter.be/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/codewriterbv/dmx512.git</connection> <developerConnection>scm:git:https://github.com/codewriterbv/dmx512.git</developerConnection> <url>https://github.com/codewriterbv/dmx512</url> <tag>HEAD</tag> </scm> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-sources-plugin</artifactId> <version>3.2.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <!-- JUnit 5 requires Surefire version 2.22.0 or higher --> <version>${maven.surfire.version}</version> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>${jreleaser.version}</version> <configuration> <jreleaser> <project> <copyright>https://github.com/codewriterbv/dmx512/</copyright> </project> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <mavenCentral> <sonatype> <active>ALWAYS</active> <url>https://central.sonatype.com/api/v1/publisher</url> <stagingRepositories>target/staging-deploy</stagingRepositories> </sonatype> </mavenCentral> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>publication</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>