You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2011/07/12 05:39:34 UTC

svn commit: r1145441 - /openejb/trunk/openejb3/examples/cdi-example/pom.xml

Author: dblevins
Date: Tue Jul 12 03:39:34 2011
New Revision: 1145441

URL: http://svn.apache.org/viewvc?rev=1145441&view=rev
Log:
added <distributionManagement> info

Modified:
    openejb/trunk/openejb3/examples/cdi-example/pom.xml

Modified: openejb/trunk/openejb3/examples/cdi-example/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/examples/cdi-example/pom.xml?rev=1145441&r1=1145440&r2=1145441&view=diff
==============================================================================
--- openejb/trunk/openejb3/examples/cdi-example/pom.xml (original)
+++ openejb/trunk/openejb3/examples/cdi-example/pom.xml Tue Jul 12 03:39:34 2011
@@ -71,5 +71,20 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+
+  <!-- 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>