Migrating to separate Guacamole javascript library

This commit is contained in:
Michael Jumper
2011-01-22 21:53:57 -08:00
parent b6898abdea
commit afa8c740f6
16 changed files with 50 additions and 1823 deletions

View File

@@ -11,6 +11,7 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -19,6 +20,21 @@
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<overlays>
<overlay>
<groupId>net.sourceforge.guacamole</groupId>
<artifactId>guacamole-common-js</artifactId>
<type>zip</type>
</overlay>
</overlays>
</configuration>
</plugin>
</plugins>
<extensions>
@@ -47,6 +63,14 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.guacamole</groupId>
<artifactId>guacamole-common-js</artifactId>
<version>0.3.0-SNAPSHOT</version>
<type>zip</type>
<scope>runtime</scope>
</dependency>
</dependencies>
<repositories>