You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by ps...@apache.org on 2011/10/20 23:42:39 UTC

svn commit: r1187065 - in /incubator/wookie/branches/0.9.1: ivy.xml pom-template.xml

Author: psharples
Date: Thu Oct 20 21:42:38 2011
New Revision: 1187065

URL: http://svn.apache.org/viewvc?rev=1187065&view=rev
Log:
Changes to allow us to build war maven artifacts & sign them.

Added:
    incubator/wookie/branches/0.9.1/pom-template.xml   (with props)
Modified:
    incubator/wookie/branches/0.9.1/ivy.xml

Modified: incubator/wookie/branches/0.9.1/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/wookie/branches/0.9.1/ivy.xml?rev=1187065&r1=1187064&r2=1187065&view=diff
==============================================================================
--- incubator/wookie/branches/0.9.1/ivy.xml (original)
+++ incubator/wookie/branches/0.9.1/ivy.xml Thu Oct 20 21:42:38 2011
@@ -23,8 +23,21 @@
 	  <conf name="dev" extends="deploy, runtime" description="Provide the necessary files and libraries to run in standalone (development) mode"/>
 	  <conf name="test" extends="dev" visibility="private" description="for our testing frameowrk"/>
 	  <conf name="ddlutils" visibility="private" description="Provide the necessary libraries to invoke DDLUtils schema generation"/>
+  	  <conf name="deploy-with-src-and-docs" extends="deploy" description="Used for publishing maven artifacts to the snapshot repo"/>
+	  <conf name="deploy-signed" extends="deploy-with-src-and-docs" description="Used for publishing maven artifacts to the staging area repo"/>
 	</configurations>
-	    
+	
+	<publications xmlns:e="urn:ant.apache.org:ivy-extras">
+	  <artifact name="wookie" conf="deploy" type="pom" ext="pom" />
+      <artifact name="wookie" conf="deploy" type="war" />
+      <artifact name="wookie" conf="deploy-with-src-and-docs" type="sources" ext="jar" e:classifier="sources"/>
+      <artifact name="wookie" conf="deploy-with-src-and-docs" type="javadoc" ext="jar" e:classifier="javadoc"/>
+      <artifact name="wookie" conf="deploy-signed" type="war.asc" ext="war.asc" />
+      <artifact name="wookie" conf="deploy-signed" type="pom.asc" ext="pom.asc"/>      
+      <artifact name="wookie" conf="deploy-signed" type="sources.asc" ext="jar.asc" e:classifier="sources"/>
+	  <artifact name="wookie" conf="deploy-signed" type="javadoc.asc" ext="jar.asc" e:classifier="javadoc"/>
+	</publications>
+
     <dependencies>
         <dependency org="org.apache.wookie" name="wookie-java-connector" rev="latest.integration" conf="deploy->default">
         </dependency>

Added: incubator/wookie/branches/0.9.1/pom-template.xml
URL: http://svn.apache.org/viewvc/incubator/wookie/branches/0.9.1/pom-template.xml?rev=1187065&view=auto
==============================================================================
--- incubator/wookie/branches/0.9.1/pom-template.xml (added)
+++ incubator/wookie/branches/0.9.1/pom-template.xml Thu Oct 20 21:42:38 2011
@@ -0,0 +1,111 @@
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<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>
+  
+  <groupId>${ivy.pom.groupId}</groupId>
+  <artifactId>${ivy.pom.artifactId}</artifactId>
+  <packaging>war</packaging>
+  <version>${ivy.pom.version}</version>
+  <name>Apache Wookie</name>
+  <description>Apache Wookie</description>
+  <licenses>
+	<license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>  
+  <url>http://incubator.apache.org/wookie/</url>
+  <inceptionYear>2009</inceptionYear>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/wookie/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/wookie/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewvc/incubator/wookie/trunk/</url>        
+  </scm>
+  
+  <mailingLists>
+	<mailingList>
+		<name>Wookie Developer List</name>
+		<subscribe>wookie-dev-subscribe@incubator.apache.org</subscribe>
+		<unsubscribe>wookie-dev-unsubscribe@incubator.apache.org</unsubscribe>
+		<post>mailto:wookie-dev@incubator.apache.org</post>
+		<archive>http://mail-archives.apache.org/mod_mbox/incubator-wookie-dev/</archive>
+	</mailingList>
+  </mailingLists>
+
+  <issueManagement>
+	<url>https://issues.apache.org/jira/browse/WOOKIE</url>
+  </issueManagement>
+
+  <developers>
+	<developer>
+		<id>ate</id>
+		<name>Ate Douma</name>
+		<email>ate@douma.nu</email>
+		<timezone>+1</timezone>
+		<organization>Hippo</organization>
+		<organizationUrl>http://www.onehippo.com</organizationUrl>
+		<roles>
+			<role>mentor</role>
+			<role>IPMC member</role>
+			<role>PPMC member</role>
+		</roles>
+	</developer>
+	<developer>
+		<id>rgardler</id>
+		<name>Ross Gardler</name>
+		<email>rgardler@opendirective.com</email>
+		<timezone>0</timezone>
+		<organization>Opendirective</organization>
+		<organizationUrl>http://www.opendirective.com</organizationUrl>
+		<roles>
+			<role>mentor</role>
+			<role>IPMC member</role>
+			<role>PPMC member</role>
+		</roles>
+	</developer>	
+	<developer>
+		<id>psharples</id>
+		<name>Paul Sharples</name>
+		<email>psharples@apache.org</email>
+		<timezone>0</timezone>
+		<organization>The University of Bolton</organization>
+		<organizationUrl>http://www.bolton.ac.uk</organizationUrl>
+		<roles>
+			<role>committer</role>
+			<role>release manager</role>
+			<role>PPMC member</role>
+		</roles>
+	</developer>
+	<developer>
+		<id>scottbw</id>
+		<name>Scott Wilson</name>
+		<email>scottbw@apache.org</email>
+		<timezone>0</timezone>
+		<organization>The University of Bolton</organization>
+		<organizationUrl>http://www.bolton.ac.uk</organizationUrl>
+		<roles>
+			<role>committer</role>
+			<role>PPMC member</role>
+		</roles>
+	</developer>
+  </developers>     
+</project>
\ No newline at end of file

Propchange: incubator/wookie/branches/0.9.1/pom-template.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain