Files
SCM-Manager/third-party/closure-compiler/pom.xml
2010-11-21 19:21:52 +01:00

55 lines
1.5 KiB
XML

<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>sonia.scm.third-party</groupId>
<artifactId>sonia.scm.third-party</artifactId>
<version>1.0-M2-SNAPSHOT</version>
</parent>
<groupId>com.google.closure</groupId>
<artifactId>repacked-compiler</artifactId>
<packaging>pom</packaging>
<version>20100917</version>
<name>repacked-compiler</name>
<dependencies>
<dependency>
<groupId>com.google.closure</groupId>
<artifactId>compiler</artifactId>
<version>20100917</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/compiler-20100917.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/main/assembly/compiler.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</project>