yuicompressor-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.codelibs.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>2.0.1</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://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.codelibs.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>2.0.1</version>
<packaging>maven-plugin</packaging>
<name>YUI Compressor Maven Plugin</name>
<description>
Maven plugin to compress (minify and obfuscate) JavaScript and CSS files
using YUI Compressor, and validate JavaScript files with JSLint.
</description>
<url>https://github.com/codelibs/yuicompressor-maven-plugin</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>CodeLibs Project</name>
<url>https://www.codelibs.org/</url>
</organization>
<licenses>
<license>
<name>The Unlicense</name>
<url>https://unlicense.org/</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:codelibs/yuicompressor-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:codelibs/yuicompressor-maven-plugin.git</developerConnection>
<url>https://github.com/codelibs/yuicompressor-maven-plugin</url>
<tag>yuicompressor-maven-plugin-2.0.1</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/codelibs/yuicompressor-maven-plugin/issues</url>
</issueManagement>
<developers>
<developer>
<id>shinsuke</id>
<name>Shinsuke Sugaya</name>
<email>shinsuke.sugaya@codelibs.co</email>
<organization>CodeLibs Inc.</organization>
<organizationUrl>https://www.codelibs.org/</organizationUrl>
<timezone>+9</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>David Bernard</name>
<roles>
<role>Original Author</role>
</roles>
<timezone>+1</timezone>
</contributor>
<contributor>
<name>Piotr Kuczynski</name>
<email>piotr.kuczynski@gmail.com</email>
<roles>
<role>Contributor</role>
</roles>
<timezone>+1</timezone>
</contributor>
<contributor>
<name>Dave Hughes</name>
<email>dlh3@sfu.ca</email>
<roles>
<role>Contributor</role>
</roles>
<timezone>-8</timezone>
</contributor>
<contributor>
<name>Aneesh Joseph</name>
<email>admin@coderplus.com</email>
<roles>
<role>Contributor</role>
</roles>
<timezone>+5.5</timezone>
</contributor>
</contributors>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<encoding>UTF-8</encoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
<maven.version>3.8.1</maven.version>
</properties>
<dependencies>
<dependency>
<groupId>org.codelibs</groupId>
<artifactId>yuicompressor</artifactId>
<version>2.4.11</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.15.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sonatype.plexus</groupId>
<artifactId>plexus-build-api</artifactId>
<version>0.0.7</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>${maven.version}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.15.2</version>
</plugin>
<!-- Maven Central rejects a deployment without a sources jar. This was
removed once on the premise that a codelibs-parent POM supplied it,
but this project has no <parent>, so nothing did. -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>512m</maxmemory>
<charset>${encoding}</charset>
<encoding>${encoding}</encoding>
<docencoding>${encoding}</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<breakiterator>true</breakiterator>
<version>true</version>
<author>true</author>
<keywords>true</keywords>
<attach>true</attach>
<doclint>none</doclint>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
</plugin>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<postBuildHookScript>validate</postBuildHookScript>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>