s3-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.lucee</groupId> <artifactId>s3-extension</artifactId> <version>2.0.2.18-RC</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://www.w3.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.lucee</groupId> <artifactId>s3-extension</artifactId> <version>2.0.2.18-RC</version> <packaging>pom</packaging> <name>S3 Extension</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <id>17AB52DE-B300-A94B-E058BD978511E39E</id> <bundlename>org.lucee.s3.extension</bundlename> <luceeCoreVersion>5.0.0.157</luceeCoreVersion> <releaseType>server</releaseType> <label>S3 Resource Extension</label> <class>org.lucee.extension.resource.s3.S3ResourceProvider</class> <release.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</release.url> <snapshot.url>https://oss.sonatype.org/content/repositories/snapshots/</snapshot.url> </properties> <scm> <url>https://github.com/lucee/extension-s3</url> <connection>scm:git:git://github.com/lucee/extension-s3.git</connection> <developerConnection>scm:git:git@github.com:lucee/extension-s3.git</developerConnection> <tag>${project.version}</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>${release.url}</url> </repository> <snapshotRepository> <id>ossrh</id> <url>${snapshot.url}</url> </snapshotRepository> </distributionManagement> <licenses> <license> <name>The GNU Lesser General Public License, Version 2.1</name> <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>micstriit</id> <name>Michael Offner</name> <email>michael@lucee.org</email> <organization>Lucee Association Switzerland</organization> <organizationUrl>http://lucee.org</organizationUrl> <roles> <role>Project-Administrator</role> <role>Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <description>Core Extension to integrate Amazon Simple Storage Service (S3) Resource into Lucee.</description> <url>https://github.com/lucee/extension-kinesis</url> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- GPG sign --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <files> <file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <!-- Antrun plugin to execute the Ant build --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <ant antfile="build.xml" target="clean"> <property name="bundleversion" value="${project.version}"/> <property name="bundlename" value="${bundlename}"/> <property name="filename" value="${project.artifactId}"/> <property name="id" value="${id}"/> <property name="luceeCoreVersion" value="${luceeCoreVersion}"/> <property name="releaseType" value="${releaseType}"/> <property name="label" value="${label}"/> <property name="description" value="${project.description}"/> <property name="class" value="${class}"/> </ant> <condition property="isSnapshot" value="true" else="false"> <matches string="${project.version}" pattern=".*-SNAPSHOT"/> </condition> <condition property="deploy.url" value="${snapshot.url}"> <istrue value="${isSnapshot}"/> </condition> <condition property="deploy.url" value="${release.url}"> <isfalse value="${isSnapshot}"/> </condition> <echo message="Deploying to URL: ${deploy.url}" /> </target> <exportAntProperties>true</exportAntProperties> </configuration> </execution> </executions> </plugin> <!-- Build Helper Plugin to attach additional artifacts --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file> <type>lex</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <!-- Clean plugin to remove extra folders --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>cleanup</id> <phase>post-package</phase> <goals> <goal>clean</goal> </goals> <configuration> <filesets> <fileset> <directory>${project.build.directory}/antrun</directory> <includes> <include>**/*</include> </includes> </fileset> <fileset> <directory>${project.build.directory}/archive-tmp</directory> <includes> <include>**/*</include> </includes> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <!-- Maven Deploy Plugin to deploy the .lex file --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy-file</goal> </goals> <configuration> <file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <repositoryId>ossrh</repositoryId> <url>${deploy.url}</url> <packaging>lex</packaging> </configuration> </execution> </executions> </plugin> <!-- Nexus Staging Maven Plugin to automate the release process --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>