Working build script. Still need to split servlets, etc. off from common

This commit is contained in:
Michael Jumper
2010-12-08 01:33:55 -08:00
parent 11b7c07481
commit 2ab80265cc
2 changed files with 33 additions and 18 deletions

View File

@@ -1,3 +1,2 @@
# Build directories # Build directories
/dist target/
/build

View File

@@ -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> <modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.guacamole</groupId> <groupId>net.sourceforge.guacamole</groupId>
<artifactId>guacamole-common</artifactId> <artifactId>guacamole-common</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>0.3.0rc1</version>
<name>guacamole-common</name> <name>guacamole-common</name>
<url>http://maven.apache.org</url> <url>http://guacamole.sourceforge.net/</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>javax.servlet</groupId>
<artifactId>junit</artifactId> <artifactId>servlet-api</artifactId>
<version>3.8.1</version> <version>2.5</version>
<scope>test</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>