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>
<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>