You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2006/08/30 23:33:28 UTC

svn commit: r438639 - in /incubator/abdera/java/trunk/protocol: ./ pom.xml src/ src/main/ src/main/java/

Author: jmsnell
Date: Wed Aug 30 14:33:27 2006
New Revision: 438639

URL: http://svn.apache.org/viewvc?rev=438639&view=rev
Log:
Step 1: Adding a new protocol module to hold the common protocol code that will be 
shared by both the client and server modules

Added:
    incubator/abdera/java/trunk/protocol/
    incubator/abdera/java/trunk/protocol/pom.xml
    incubator/abdera/java/trunk/protocol/src/
    incubator/abdera/java/trunk/protocol/src/main/
    incubator/abdera/java/trunk/protocol/src/main/java/

Added: incubator/abdera/java/trunk/protocol/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/protocol/pom.xml?rev=438639&view=auto
==============================================================================
--- incubator/abdera/java/trunk/protocol/pom.xml (added)
+++ incubator/abdera/java/trunk/protocol/pom.xml Wed Aug 30 14:33:27 2006
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  The ASF licenses this file to You
+  under the Apache License, Version 2.0 (the "License"); you may not
+  use this file except in compliance with the License.
+  You may obtain a copy of the License at
+ 
+      http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.  For additional information regarding
+  copyright in this work, please see the NOTICE file in the top level
+  directory of this distribution. -->
+<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.2.0-incubating-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>abdera-protocol</artifactId>
+  <packaging>jar</packaging>
+  <name>Abdera Protocol Core</name>
+  <version>0.2.0-incubating-SNAPSHOT</version>
+  <description>Atom Publishing Protocol Implementation Core</description>
+  <inceptionYear>2006</inceptionYear>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-activation_1.0.2_spec</artifactId>
+    </dependency>
+  </dependencies>
+</project>