You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by wo...@apache.org on 2010/05/12 20:05:32 UTC

svn commit: r943600 - /portals/applications/sandbox/content/trunk/pom.xml

Author: woonsan
Date: Wed May 12 18:05:31 2010
New Revision: 943600

URL: http://svn.apache.org/viewvc?rev=943600&view=rev
Log: (empty)

Added:
    portals/applications/sandbox/content/trunk/pom.xml   (with props)

Added: portals/applications/sandbox/content/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/content/trunk/pom.xml?rev=943600&view=auto
==============================================================================
--- portals/applications/sandbox/content/trunk/pom.xml (added)
+++ portals/applications/sandbox/content/trunk/pom.xml Wed May 12 18:05:31 2010
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE file distributed with this
+  work for additional information regarding copyright ownership. 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. $Id:$
+-->
+<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">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- POM Identification -->
+  <parent>
+    <groupId>org.apache.portals</groupId>
+    <artifactId>applications-pom</artifactId>
+    <version>1.2</version>
+  </parent>
+
+  <groupId>org.apache.portals.applications</groupId>
+  <artifactId>apa-content</artifactId>
+  <packaging>war</packaging>
+  <name>Apache Portals Applications Content</name>
+  <version>1.2-SNAPSHOT</version>
+  <description>Content Portlet Application</description>
+
+  <properties>
+    <javax.servlet.version>2.4</javax.servlet.version>
+    <portals.portlet2-api-spec.version>1.0</portals.portlet2-api-spec.version>
+    <org.apache.portals.bridges.common.version>2.0-SNAPSHOT</org.apache.portals.bridges.common.version>
+    <javax.jcr.version>1.0</javax.jcr.version>
+    <jackrabbit.version>1.5.0</jackrabbit.version>
+    <commons-lang.version>2.4</commons-lang.version>
+    <slf4j.version>1.5.6</slf4j.version>
+    <log4j.version>1.2.14</log4j.version>
+  </properties>
+  
+  <dependencies>
+    
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>${javax.servlet.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.portals</groupId>
+      <artifactId>portlet-api_2.0_spec</artifactId>
+      <version>${portals.portlet2-api-spec.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>javax.jcr</groupId>
+      <artifactId>jcr</artifactId>
+      <version>${javax.jcr.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.jackrabbit</groupId>
+      <artifactId>jackrabbit-ocm</artifactId>
+      <version>${jackrabbit.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <scope>runtime</scope>
+      <version>${commons-lang.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>${slf4j.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>${slf4j.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <version>${slf4j.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>${log4j.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    
+  </dependencies>
+  
+</project>

Propchange: portals/applications/sandbox/content/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/applications/sandbox/content/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id