mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
Working build script. Still need to split servlets, etc. off from common
This commit is contained in:
3
guacamole/web-client/.gitignore
vendored
3
guacamole/web-client/.gitignore
vendored
@@ -1,3 +1,2 @@
|
|||||||
# Build directories
|
# Build directories
|
||||||
/dist
|
target/
|
||||||
/build
|
|
||||||
|
@@ -1,18 +1,34 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
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>net.sourceforge.guacamole</groupId>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>guacamole-common</artifactId>
|
<groupId>net.sourceforge.guacamole</groupId>
|
||||||
<packaging>jar</packaging>
|
<artifactId>guacamole-common</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<packaging>jar</packaging>
|
||||||
<name>guacamole-common</name>
|
<version>0.3.0rc1</version>
|
||||||
<url>http://maven.apache.org</url>
|
<name>guacamole-common</name>
|
||||||
<dependencies>
|
<url>http://guacamole.sourceforge.net/</url>
|
||||||
<dependency>
|
|
||||||
<groupId>junit</groupId>
|
<build>
|
||||||
<artifactId>junit</artifactId>
|
<plugins>
|
||||||
<version>3.8.1</version>
|
<plugin>
|
||||||
<scope>test</scope>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</dependency>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
</dependencies>
|
<configuration>
|
||||||
|
<source>1.6</source>
|
||||||
|
<target>1.6</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.servlet</groupId>
|
||||||
|
<artifactId>servlet-api</artifactId>
|
||||||
|
<version>2.5</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
Reference in New Issue
Block a user