compress-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.lucee</groupId>
<artifactId>compress-extension</artifactId>
<version>2.1.0.1-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>compress-extension</artifactId>
<version>2.1.0.1-RC</version>
<packaging>pom</packaging>
<name>Compress 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>8D7FB0DF-08BB-1589-FE3975678F07DB17</id>
<bundlename>org.lucee.compress.extension</bundlename>
<classTgz>org.lucee.extension.compress.resource.TGZResourceProvider</classTgz>
<classTar>org.lucee.extension.compress.resource.TarResourceProvider</classTar>
<classZip>org.lucee.extension.compress.resource.ZipResourceProvider</classZip>
<luceeCoreVersion>7.0.0.110</luceeCoreVersion>
<releaseType>server</releaseType>
<label>Compress Tags and functions for Jakarta EE (Lucee 7+)</label>
<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-compress</url>
<connection>scm:git:git://github.com/lucee/extension-compress.git</connection>
<developerConnection>scm:git:git@github.com:lucee/extension-compress.git</developerConnection>
<tag>${project.version}</tag>
</scm>
<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>Compress Tags (cfzip, cfzipparam)</description>
<url>https://github.com/lucee/extension-compress</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="classTgz" value="${classTgz}"/>
<property name="classTar" value="${classTar}"/>
<property name="classZip" value="${classZip}"/>
<property name="filename" value="${project.artifactId}"/>
<property name="groupId" value="${project.groupId}"/>
<property name="artifactId" 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="srcversion" value="${maven.compiler.source}"/>
<property name="trgversion" value="${maven.compiler.target}"/>
</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.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</project>