You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2012/03/09 08:43:23 UTC

svn commit: r1298720 - /openejb/trunk/openejb/examples/polling-parent/pom.xml

Author: rmannibucau
Date: Fri Mar  9 07:43:22 2012
New Revision: 1298720

URL: http://svn.apache.org/viewvc?rev=1298720&view=rev
Log:
adding distribution management to polling sample to be able to deploy trunk

Modified:
    openejb/trunk/openejb/examples/polling-parent/pom.xml

Modified: openejb/trunk/openejb/examples/polling-parent/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb/examples/polling-parent/pom.xml?rev=1298720&r1=1298719&r2=1298720&view=diff
==============================================================================
--- openejb/trunk/openejb/examples/polling-parent/pom.xml (original)
+++ openejb/trunk/openejb/examples/polling-parent/pom.xml Fri Mar  9 07:43:22 2012
@@ -111,4 +111,20 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
+
+  <!--
+  This section allows you to configure where to publish libraries for sharing.
+  It is not required and may be deleted.  For more information see:
+  http://maven.apache.org/plugins/maven-deploy-plugin/
+  -->
+  <distributionManagement>
+    <repository>
+      <id>localhost</id>
+      <url>file://${basedir}/target/repo/</url>
+    </repository>
+    <snapshotRepository>
+      <id>localhost</id>
+      <url>file://${basedir}/target/snapshot-repo/</url>
+    </snapshotRepository>
+  </distributionManagement>
 </project>