flatpack-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.getperka.flatpack</groupId>
<artifactId>flatpack-core</artifactId>
<version>2.21.0</version>
</dependency><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>
<artifactId>flatpack-core</artifactId>
<name>FlatPack serialization code</name>
<parent>
<groupId>com.getperka.flatpack</groupId>
<artifactId>flatpack-parent</artifactId>
<version>2.21.0</version>
</parent>
<scm>
<connection>scm:git:git@git.getperka.com:flatpack.git</connection>
<url>scm:git:git@git.getperka.com:flatpack.git</url>
<developerConnection>scm:git:git@git.getperka.com:flatpack.git</developerConnection>
<tag>flatpack-2.21.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.getperka.flatpack</groupId>
<artifactId>flatpack-apidoc-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<configuration>
<docletClass>com.getperka.flatpack.doclets.DocStringsDoclet</docletClass>
<subpackages>com.getperka.flatpack.ext</subpackages>
</configuration>
<goals>
<goal>apidoc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>