closure-compiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> <version>v20200112</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>closure-compiler-main</artifactId> <groupId>com.google.javascript</groupId> <version>v20200112</version> <relativePath>pom-main.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> <name>Closure Compiler</name> <version>v20200112</version> <description>Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's JavaScript apps, including Gmail, Google Web Search, Google Maps, and Google Docs.</description> <url>https://developers.google.com/closure/compiler/</url> <inceptionYear>2009</inceptionYear> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <executions> <execution> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>com.google.javascript:closure-compiler</artifact> <excludes> <exclude>**/*.gwt.xml</exclude> <exclude>com/google/javascript/jscomp/gwt/**</exclude> <exclude>com/google/javascript/refactoring/**</exclude> </excludes> </filter> </filters> <minimizeJar>true</minimizeJar> <transformers> <transformer> <mainClass>com.google.javascript.jscomp.CommandLineRunner</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.auto.value</groupId> <artifactId>auto-value</artifactId> <version>1.4.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>0.45</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>checker-compat-qual</artifactId> <groupId>org.checkerframework</groupId> </exclusion> <exclusion> <artifactId>diffutils</artifactId> <groupId>com.googlecode.java-diff-utils</groupId> </exclusion> <exclusion> <artifactId>auto-value-annotations</artifactId> <groupId>com.google.auto.value</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.9.7</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>ant-launcher</artifactId> <groupId>org.apache.ant</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.2.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-testlib</artifactId> <version>25.1-jre</version> <scope>test</scope> </dependency> </dependencies> </project>