petals-bc-sftp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-bc-sftp</artifactId>
<version>1.10.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2009-2012 EBM WebSourcing, 2012-2023 Linagora
This program/library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2.1 of the License, or (at your
option) any later version.
This program/library 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 Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program/library; If not, see http://www.gnu.org/licenses/
for the GNU Lesser General Public License version 2.1.
-->
<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>
<parent>
<artifactId>petals-cdkbased-components-parent</artifactId>
<groupId>org.ow2.petals</groupId>
<relativePath>../../cdk-based-parent/pom.xml</relativePath>
<version>1.2.0</version>
</parent>
<name>Petals ESB - Components - BC Sftp</name>
<artifactId>petals-bc-sftp</artifactId>
<groupId>org.ow2.petals</groupId>
<version>1.10.0</version>
<packaging>jbi-component</packaging>
<description>A binding component used to transfer files using secure ftp</description>
<dependencies>
<dependency>
<groupId>sshtools</groupId>
<artifactId>j2ssh-core</artifactId>
<version>0.2.9</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<exclusions>
<exclusion>
<!-- Already included in com.sun.activation:jakarta.activation -->
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-jbi</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-commons-log</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-jbidescriptor</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-steplog</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-api</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-core</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-bc-sftp-connection</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.ow2.easycommons</groupId>
<artifactId>easycommons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.easycommons</groupId>
<artifactId>easycommons-uuid</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.easycommons</groupId>
<artifactId>easycommons-util</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.easywsdl</groupId>
<artifactId>easywsdl-wsdl</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-junit</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-test-utils</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-junit-inmemoryloghandler</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-junit-sftpserver</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<!--
This dependency is used directly in this project by unit test but it is needed
at runtime by CDK core, so its scope must be 'provided' (by Petals ESB Container
bootstrap classloader) instead of 'test'
-->
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-runtime</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- Clean temp files in source code directories -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/src/test/resources</directory>
<includes>
<include>SFtpServiceInterface.wsdl</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>get-xmlmime-xsd</id>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<get src="http://www.w3.org/2005/05/xmlmime" dest="${project.build.outputDirectory}/xmlmime.xsd" />
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-abstract-wsdl</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/src/test/resources</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>SFtpServiceInterface.wsdl</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<executions>
<execution>
<id>generate</id>
<goals>
<goal>generate</goal>
</goals>
<phase>generate-test-sources</phase>
<configuration>
<addCompileSourceRoot>false</addCompileSourceRoot>
<addTestCompileSourceRoot>true</addTestCompileSourceRoot>
<schemaDirectory>${basedir}/src/test/resources</schemaDirectory>
<schemaIncludes>
<include>SFtpServiceInterface.wsdl</include>
</schemaIncludes>
<generateDirectory>${project.build.directory}/generated-test-sources/xjc</generateDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-test-javadocs</id>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<excludePackageNames>org.ow2.petals.components.sftp.version_1,org.w3._2005._05.xmlmime</excludePackageNames>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:svn:https://svn.petalslink.org/svnroot/tags/petals-bc-sftp-1.10.0</connection>
<developerConnection>scm:svn:https://svn.petalslink.org/svnroot/tags/petals-bc-sftp-1.10.0</developerConnection>
</scm>
</project>