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 2008/05/12 18:12:24 UTC

svn commit: r655545 - /incubator/abdera/java/trunk/core/pom.xml

Author: jmsnell
Date: Mon May 12 09:12:24 2008
New Revision: 655545

URL: http://svn.apache.org/viewvc?rev=655545&view=rev
Log:
Add logging dependency

Modified:
    incubator/abdera/java/trunk/core/pom.xml

Modified: incubator/abdera/java/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/core/pom.xml?rev=655545&r1=655544&r2=655545&view=diff
==============================================================================
--- incubator/abdera/java/trunk/core/pom.xml (original)
+++ incubator/abdera/java/trunk/core/pom.xml Mon May 12 09:12:24 2008
@@ -14,38 +14,42 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<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.5.0-incubating-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>abdera-core</artifactId>
-  <packaging>jar</packaging>
-  <name>Abdera Core</name>
-  <version>0.5.0-incubating-SNAPSHOT</version>
-  <description>Atom Specification Implementation Core</description>
-  <properties>
-    <topDir>${basedir}/..</topDir>
-  </properties>
-  <dependencies>
-  	<dependency>
-  		<groupId>junit</groupId>
-  		<artifactId>junit</artifactId>
-  	</dependency>
-  	<dependency>
-  		<groupId>org.apache.abdera</groupId>
-  		<artifactId>abdera-i18n</artifactId>
-  		<version>0.5.0-incubating-SNAPSHOT</version>
-  	</dependency>
-  	<dependency>
-  		<groupId>org.apache.geronimo.specs</groupId>
-  		<artifactId>geronimo-activation_1.0.2_spec</artifactId>
-  	</dependency>
-  	<dependency>
-  		<groupId>commons-codec</groupId>
-  		<artifactId>commons-codec</artifactId>
-  	</dependency>
-  </dependencies>
+<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.5.0-incubating-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>abdera-core</artifactId>
+  <packaging>jar</packaging>
+  <name>Abdera Core</name>
+  <version>0.5.0-incubating-SNAPSHOT</version>
+  <description>Atom Specification Implementation Core</description>
+  <properties>
+    <topDir>${basedir}/..</topDir>
+  </properties>
+  <dependencies>
+  	<dependency>
+  		<groupId>junit</groupId>
+  		<artifactId>junit</artifactId>
+  	</dependency>
+  	<dependency>
+  		<groupId>org.apache.abdera</groupId>
+  		<artifactId>abdera-i18n</artifactId>
+  		<version>0.5.0-incubating-SNAPSHOT</version>
+  	</dependency>
+  	<dependency>
+  		<groupId>org.apache.geronimo.specs</groupId>
+  		<artifactId>geronimo-activation_1.0.2_spec</artifactId>
+  	</dependency>
+  	<dependency>
+  		<groupId>commons-codec</groupId>
+  		<artifactId>commons-codec</artifactId>
+  	</dependency>
+	<dependency>
+  		<groupId>commons-logging</groupId>
+  		<artifactId>commons-logging</artifactId>
+  	</dependency>
+  </dependencies>
 </project>
\ No newline at end of file