javascript-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.dynamic_tools.javascript.maven</groupId> <artifactId>javascript-maven-plugin</artifactId> <version>1.1.0</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> <parent> <groupId>net.dynamic_tools</groupId> <artifactId>javascript</artifactId> <version>1.1.0</version> </parent> <groupId>net.dynamic_tools.javascript.maven</groupId> <artifactId>javascript-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>Javascript Maven Plugin</name> <url>http://maven.apache.org</url> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> </dependency> <dependency> <groupId>net.dynamic_tools.javascript.dependencymanager</groupId> <artifactId>core</artifactId> </dependency> <dependency> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> </dependency> </dependencies> </project>