odetteftp-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.neociclo.accord.odetteftp</groupId>
<artifactId>odetteftp-parent</artifactId>
<version>1.2.0.RC1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Neociclo Accord - Open Source B2B Integration Suite
Copyright (C) 2005-2010 Neociclo, http://www.neociclo.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses />.
$Id: pom.xml 313 2010-05-07 15:37:28Z rmarins $
--><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>org.neociclo.accord</groupId>
<artifactId>accord-parent</artifactId>
<version>1.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.neociclo.accord.odetteftp</groupId>
<artifactId>odetteftp-parent</artifactId>
<name>Accord Odette FTP</name>
<version>1.2.0.RC1</version>
<packaging>pom</packaging>
<description>
Accord Odette FTP Library is a Java API for developing OFTP2-enabled applications, supporting OFTP 1.3, 1.4 and 2.0 protocol versions.
</description>
<licenses>
<license>
<name>GNU AFFERO GENERAL PUBLIC LICENSE v3</name>
<url>http://www.gnu.org/licenses/agpl-3.0.txt</url>
</license>
</licenses>
<distributionManagement>
<site>
<id>ow2-repo</id>
<url>scp://forge.objectweb.org/var/lib/gforge/chroot/home/groups/accord/htdocs/odetteftp</url>
</site>
</distributionManagement>
<developers>
<developer>
<id>rmarins</id>
<name>Rafael Marins</name>
<organization>Neociclo</organization>
<timezone>BRST</timezone>
</developer>
<developer>
<id>brunoborges</id>
<name>Bruno Borges</name>
<organization>Neociclo</organization>
<timezone>BRST</timezone>
</developer>
</developers>
<scm>
<connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/accord/odetteftp/tags/odetteftp-1.2.0.RC1</connection>
<developerConnection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/accord/odetteftp/tags/odetteftp-1.2.0.RC1</developerConnection>
<url>http://websvn.ow2.org/listing.php?repname=accord&path=/odetteftp/tags/odetteftp-1.2.0.RC1?repname=accord&path=/odetteftp/trunk/</url>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useFile>false</useFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<siteDirectory>site</siteDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<addVersionToProjectName>true</addVersionToProjectName>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!--+
| ======== Logging dependencies ========
+-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--+
| ======== Test-only dependencies ========
+-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>${easymock.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.neociclo.accord.odetteftp</groupId>
<artifactId>core-oftp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neociclo.accord.odetteftp</groupId>
<artifactId>forby-oftp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neociclo.accord.odetteftp</groupId>
<artifactId>camel-oftp</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>core</module>
<module>camel-oftp</module>
<module>examples</module>
<!--
<module>forby-oftp</module>
<module>cli-oftp</module>
-->
<module>assemblies</module>
</modules>
<properties>
<!-- compile dependencies version -->
<netty.version>3.2.2.Final</netty.version>
<bouncycastle.version>1.45</bouncycastle.version>
<!-- test dependencies version -->
<slf4j.version>1.5.8</slf4j.version>
<log4j.version>1.2.16</log4j.version>
<junit.version>4.8.1</junit.version>
<easymock.version>2.5.2</easymock.version>
</properties>
</project>