Author: cziegeler
Date: Thu Apr 9 15:31:12 2009
New Revision: 763702
URL: http://svn.apache.org/viewvc?rev=763702&view=rev
Log:
PLUTO-548 : Add pom
Added:
portals/portlet-spec/portlet-api-1.0/pom.xml (with props)
Added: portals/portlet-spec/portlet-api-1.0/pom.xml
URL:
http://svn.apache.org/viewvc/portals/portlet-spec/portlet-api-1.0/pom.xml?rev=763702&view=auto
==============================================================================
--- portals/portlet-spec/portlet-api-1.0/pom.xml (added)
+++ portals/portlet-spec/portlet-api-1.0/pom.xml Thu Apr 9 15:31:12 2009
@@ -0,0 +1,106 @@
+<?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.
+-->
+<!--
+ A basic Maven 2 build for the JSR-286 sources.
+ Use 'mv package' to create the jar in the target directory or
+ 'mvn install' to package the jar and install it in
+ your local Maven repository.
+ -->
+<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">
+
+ <groupId>javax.portlet</groupId>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>portlet-api</artifactId>
+ <version>1.0</version>
+ <packaging>jar</packaging>
+ <name>Java Portlet Specification V1.0</name>
+ <description>The Java Portlet API version 1.0 developed by the Java
Community Process JSR-168 Expert Group.</description>
+ <url>http://www.jcp.org/en/jsr/detail?id=168</url>
+ <distributionManagement>
+ <repository>
+ <id></id>
+ <url></url>
+ </repository>
+
<downloadUrl>http://jcp.org/aboutJava/communityprocess/final/jsr168/index.html</downloadUrl>
+ </distributionManagement>
+
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.3</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <doctitle>${pom.name}</doctitle>
+ <windowtitle>${pom.name}</windowtitle>
+ <splitindex>true</splitindex>
+ <bottom> </bottom>
+ </configuration>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ssh-external</artifactId>
+ <version>1.0-alpha-5</version>
+ </extension>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ftp</artifactId>
+ <version>1.0-alpha-6</version>
+ </extension>
+ </extensions>
+
+ </build>
+
+</project>
+
+
Propchange: portals/portlet-spec/portlet-api-1.0/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: portals/portlet-spec/portlet-api-1.0/pom.xml
------------------------------------------------------------------------------
svn:keywords = Id
Propchange: portals/portlet-spec/portlet-api-1.0/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/plain