[[[
Add a build for the abdera-server module.

* pom.xml: Added server module.

* server/pom.xml: New file.
]]]

--
Stephen Duncan Jr
www.stephenduncanjr.com
Index: java/trunk/server/pom.xml
===================================================================
--- java/trunk/server/pom.xml   (revision 0)
+++ java/trunk/server/pom.xml   (revision 0)
@@ -0,0 +1,35 @@
+<?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";>
+  <parent>
+    <groupId>org.apache.abdera</groupId>
+    <artifactId>abdera</artifactId>
+    <version>0.1-SNAPSHOT</version>
+  </parent>  
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>abdera-server</artifactId>
+  <packaging>jar</packaging>
+  <name>Abdera Server</name>
+  <version>0.1-SNAPSHOT</version>
+  <description>Atom Publishing Protocol Specification Server-Side 
Implementation</description>
+  <inceptionYear>2006</inceptionYear>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.abdera</groupId>
+      <artifactId>abdera-core</artifactId>
+      <version>0.1-SNAPSHOT</version>
+      <scope>compile</scope>
+    </dependency>    
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+    </dependency>
+  </dependencies>
+</project>
Index: java/trunk/pom.xml
===================================================================
--- java/trunk/pom.xml  (revision 415842)
+++ java/trunk/pom.xml  (working copy)
@@ -138,6 +138,7 @@
     <module>core</module>
     <module>parser</module>
     <module>security</module>
+    <module>server</module>
     <module>examples</module>
   </modules>
   

Reply via email to