jrecordbind-java5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.assist.jrecordbind</groupId>
<artifactId>jrecordbind-java5</artifactId>
<version>2.3.5</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>it.assist.jrecordbind</groupId>
<artifactId>jrecordbind-java5</artifactId>
<packaging>jar</packaging>
<version>2.3.5</version>
<name>jrecordbind</name>
<inceptionYear>2009</inceptionYear>
<description>Transform fixed-length and variable-length text files into beans and back</description>
<url>https://jrecordbind.dev.java.net/</url>
<issueManagement>
<system>bugzilla</system>
<url>https://jrecordbind.dev.java.net/servlets/ProjectIssues</url>
</issueManagement>
<scm>
<connection>scm:svn:https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/</connection>
<developerConnection>scm:svn:https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/</developerConnection>
<url>https://jrecordbind.dev.java.net/source/browse/jrecordbind/</url>
</scm>
<developers>
<developer>
<name>Federico Fissore</name>
<id>fridrik</id>
<email>fridrik@dev.java.net</email>
</developer>
</developers>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<id>java.net-m2-repository</id>
<url>java-net:/maven2-repository/trunk/repository/</url>
</repository>
<site>
<id>website</id>
<url>svn:https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/www/</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Maven 2 Repository</name>
<url>http://download.java.net/maven/2</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>relaxngDatatype</groupId>
<artifactId>relaxngDatatype</artifactId>
<version>20020414</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.1.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.1.11</version>
<scope>compile</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>jdk6</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.6</jdk>
</activation>
<properties>
<compiler.version>1.6</compiler.version>
<artifactId.ext></artifactId.ext>
<javadoc.url>http://java.sun.com/javase/6/docs/api/</javadoc.url>
</properties>
</profile>
<profile>
<id>jdk5</id>
<activation>
<jdk>1.5</jdk>
</activation>
<properties>
<compiler.version>1.5</compiler.version>
<artifactId.ext>-java5</artifactId.ext>
<javadoc.url>http://java.sun.com/j2se/1.5.0/docs/api/</javadoc.url>
</properties>
</profile>
</profiles>
<build>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>RELEASE</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>${compiler.version}</source>
<target>${compiler.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-3</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.7</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.4</version>
<configuration>
<linksource>true</linksource>
<links>
<link>${javadoc.url}</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>
</project>