bidibwizard-dmx-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bidib.jbidib</groupId> <artifactId>bidibwizard-dmx-client</artifactId> <version>2.0.37</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.bidib.jbidib</groupId> <artifactId>bidibwizard</artifactId> <version>2.0.37</version> </parent> <artifactId>bidibwizard-dmx-client</artifactId> <version>2.0.37</version> <name>jBiDiB :: BiDiB Wizard DMX client</name> <description>jBiDiB BiDiB Wizard DMX client POM</description> <licenses> <license> <name>GNU General Purpose License Version 3.0</name> <url>http://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <dependency> <groupId>org.bidib.jbidib</groupId> <artifactId>bidibwizard-client-common</artifactId> </dependency> <dependency> <groupId>org.bidib.jbidib</groupId> <artifactId>bidibwizard-common</artifactId> </dependency> <dependency> <groupId>org.bidib.jbidib</groupId> <artifactId>bidibwizard-core</artifactId> </dependency> <dependency> <groupId>org.jfree</groupId> <artifactId>jfreechart</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-indexer</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.formdev</groupId> <artifactId>flatlaf</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.formdev</groupId> <artifactId>flatlaf-jide-oss</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>${jaxb2-maven-plugin.groupId}</groupId> <artifactId>${jaxb2-maven-plugin.artifactId}</artifactId> <executions> <execution> <id>generate</id> <goals> <goal>generate</goal> </goals> <configuration> <bindingDirectory>src/main/xjb</bindingDirectory> <bindingIncludes> <include>bindings.xjb</include> </bindingIncludes> <extension>true</extension> <args> <arg>-Xcommons-lang</arg> <arg>-Xfluent-api</arg> </args> <schemas> <schema> <fileset> <directory>${project.basedir}/src/main/resources/xsd</directory> <includes> <include>*.xsd</include> </includes> <excludes> <exclude>*.xs</exclude> </excludes> </fileset> </schema> </schemas> <strict>false</strict> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <includePom>true</includePom> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-resources/xml/</source> <source>${project.basedir}/src/main/xjb/</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>