oftp-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.neociclo.accord.odetteftp</groupId> <artifactId>oftp-core</artifactId> <version>1.2.0.RC1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Neociclo Accord, Open Source B2Bi Middleware Copyright (c) 2005-2009 Neociclo, http://www.neociclo.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses />. $Id: pom.xml 823 2010-10-25 13:14:31Z 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.odetteftp</groupId> <artifactId>odetteftp-parent</artifactId> <version>1.2.0.RC1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>oftp-core</artifactId> <packaging>jar</packaging> <name>Accord Odette FTP :: Core API</name> <description>Accord Odette FTP Library</description> <build> <resources> <resource> <directory>${basedir}/target/license</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <id>copy-legal-info</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/license/META-INF</outputDirectory> <resources> <resource> <directory>${basedir}</directory> <filtering>false</filtering> <includes> <include>COPYRIGHT.txt</include> <include>LICENSE.txt</include> <include>NOTICE.txt</include> <include>license/*.txt</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> <!--+ | ======== BouncyCastle Mail/CMS and JCE provider ======== | (Activation by JDK version) +--> <profiles> <profile> <id>jdk15-deps-activation</id> <activation> <jdk>1.5</jdk> </activation> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcmail-jdk15</artifactId> <version>${bouncycastle.version}</version> </dependency> </dependencies> </profile> <profile> <id>jdk16-deps-activation</id> <activation> <jdk>1.6</jdk> </activation> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcmail-jdk16</artifactId> <version>${bouncycastle.version}</version> </dependency> </dependencies> </profile> </profiles> <repositories> <repository> <id>repository.jboss.org</id> <url>https://repository.jboss.org/nexus/content/groups/public/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <dependencies> <!--+ | ======== JBoss Netty ======== +--> <dependency> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> <version>${netty.version}</version> </dependency> </dependencies> </project>