cf-s3-proxy-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.eclipse.californium</groupId>
<artifactId>cf-s3-proxy-server</artifactId>
<version>4.0.0-M6</version>
</dependency><?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.californium</groupId>
<artifactId>demo-apps</artifactId>
<version>4.0.0-M6</version>
</parent>
<artifactId>cf-s3-proxy-server</artifactId>
<packaging>jar</packaging>
<name>Cf-S3-ProxyServer</name>
<description>Californium (Cf) S3 Proxy Server</description>
<properties>
<assembly.mainClass>org.eclipse.californium.cloud.s3.S3ProxyServer</assembly.mainClass>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
<skipStaging>false</skipStaging>
<skipPublishing>false</skipPublishing>
<maven.javadoc.skip>false</maven.javadoc.skip>
<aws.sdk.version>2.30.33</aws.sdk.version>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>californium-proxy2</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cf-cloud-demo-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>${aws.sdk.version}</version>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- runtime dependencies -->
<dependency>
<artifactId>netty-nio-client</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>${aws.sdk.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-installed</id>
<?m2e ignore?>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>cf-encrypt</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
</artifactItems>
<outputDirectory>target</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>