common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cedarsoft.serialization.generator</groupId>
<artifactId>common</artifactId>
<version>6.1.0</version>
</dependency><?xml version="1.0"?>
<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">
<parent>
<groupId>com.cedarsoft.serialization</groupId>
<artifactId>generator</artifactId>
<version>6.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.cedarsoft.serialization.generator</groupId>
<artifactId>common</artifactId>
<name>Generator commons</name>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
<dependency>
<groupId>com.cedarsoft</groupId>
<artifactId>serialization</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.serialization</groupId>
<artifactId>test-utils</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft</groupId>
<artifactId>codegen</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.commons</groupId>
<artifactId>id</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.commons</groupId>
<artifactId>io</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.commons</groupId>
<artifactId>execution</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.commons</groupId>
<artifactId>test-utils</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<properties>
<coverage.haltOnFailure>false</coverage.haltOnFailure>
</properties>
</project>