ais-lib-communication
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dk.dma.ais.lib</groupId> <artifactId>ais-lib-communication</artifactId> <version>2.8.6-rc1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>dk.dma.ais.lib</groupId> <artifactId>ais-parent</artifactId> <version>2.8.6-rc1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>ais-lib-communication</artifactId> <name>AIS Communication </name> <build> <pluginManagement> <plugins> <plugin> <groupId>com.sun.tools.jxc.maven2</groupId> <artifactId>maven-jaxb-schemagen-plugin</artifactId> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.7</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>schemagen</id> <goals> <goal>schemagen</goal> </goals> </execution> </executions> <configuration> <includes> <include>dk/dma/ais/bus/configuration/*.java</include> </includes> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>net.maritimecloud</groupId> <artifactId>mc-core</artifactId> <version>0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ais-lib-messages</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dk.dma.commons</groupId> <artifactId>dma-commons-util</artifactId> <version>${dependencies.dma.commons.version}</version> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.1-jre</version> </dependency> <dependency> <groupId>dk.dma.enav</groupId> <artifactId>enav-util</artifactId> <version>${dependencies.enav.version}</version> </dependency> <dependency> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> <version>1.30</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.2.7</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>4.2</version> </dependency> <dependency> <groupId>de.micromata.jak</groupId> <artifactId>JavaAPIforKml</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <version>1.1</version> </dependency> </dependencies> </project>