sfm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.simpleflatmapper</groupId> <artifactId>sfm</artifactId> <version>2.14.1</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>sfm</artifactId> <packaging>bundle</packaging> <parent> <groupId>org.simpleflatmapper</groupId> <artifactId>sfm-parent</artifactId> <version>2.14.1</version> </parent> <description>Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.</description> <developers> <developer> <id>arnaudroger</id> <name>Arnaud Roger</name> <email>arnaud.roger@gmail.com</email> </developer> </developers> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>5.1</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.9.3</version> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>javax.persistence</artifactId> <version>2.1.1</version> <optional>true</optional> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.38</version> <optional>true</optional> </dependency> <dependency> <groupId>org.simpleflatmapper</groupId> <artifactId>sfm-test</artifactId> <version>2.14.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <version>2.5.4</version> <configuration> <classifier>${jar.classifier}</classifier> <instructions> <Export-Package>!org.sfm.*.impl.*,org.sfm.*</Export-Package> <Import-Package>org.objectweb.asm;version="[4.0,6)";resolution:=optional,org.objectweb.asm.signature;version="[4.0,6)";resolution:=optional,*</Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>1.1.9</version> <configuration> <targetClasses> <param>org.sfm.*</param> </targetClasses> <targetTests> <param>org.sfm.*</param> </targetTests> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>travis</id> <activation> <property> <name>env.TRAVIS</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>jdk16</id> <activation> <jdk>1.6</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>jdk17</id> <activation> <jdk>1.7</jdk> </activation> <dependencies> <dependency> <groupId>com.boundary</groupId> <artifactId>fasttuple-core</artifactId> <version>0.1</version> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>jdk18</id> <activation> <jdk>[1.8,)</jdk> </activation> <dependencies> <dependency> <groupId>org.jooq</groupId> <artifactId>jool</artifactId> <version>0.9.10</version> <optional>true</optional> </dependency> <dependency> <groupId>com.boundary</groupId> <artifactId>fasttuple-core</artifactId> <version>0.1</version> <optional>true</optional> </dependency> </dependencies> </profile> </profiles> </project>