simple-mapper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.joanzapata.mapper</groupId> <artifactId>simple-mapper</artifactId> <version>1.0.10</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.joanzapata.mapper</groupId> <artifactId>simple-mapper</artifactId> <version>1.0.10</version> <name>Simple Mapper</name> <packaging>jar</packaging> <description>A very simple POJO mapper based on getters/setters with support for inheritance, cyclic dependencies, manual mapping hooks. </description> <url>http://joanzapata.com/simple-mapper/</url> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>http://github.com/JoanZapata/simple-mapper/</url> <connection>scm:git:git://github.com/JoanZapata/simple-mapper.git</connection> <developerConnection>scm:git:ssh://git@github.com/JoanZapata/simple-mapper.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <name>Joan Zapata</name> <email>zapata.joan@gmail.com</email> <url>http://joanzapata.com</url> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> <java.version>1.6</java.version> <junit.version>4.11</junit.version> <slf4j.version>1.7.5</slf4j.version> <logback.version>1.0.13</logback.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <!-- Checks for license headers. Use "mvn license:format" to update files. --> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <header>src/etc/header.txt</header> <excludes> <exclude>.idea/**</exclude> <exclude>src/etc/HOW-TO.txt</exclude> <exclude>LICENSE.txt</exclude> <exclude>.gitignore</exclude> <exclude>README.txt</exclude> </excludes> <strictCheck>true</strictCheck> </configuration> </plugin> </plugins> </build> </project>