This is an automated email from the ASF dual-hosted git repository.
jgallimore pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git
The following commit(s) were added to refs/heads/master by this push:
new b1ae585 Adding distributionManagement for
jaxrs-json-provider-jettison example
b1ae585 is described below
commit b1ae58510b3487b52906d7343dd5a548a08cccb1
Author: Jonathan Gallimore <[email protected]>
AuthorDate: Wed Sep 11 21:17:10 2019 +0100
Adding distributionManagement for jaxrs-json-provider-jettison example
---
examples/jaxrs-json-provider-jettison/pom.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/examples/jaxrs-json-provider-jettison/pom.xml
b/examples/jaxrs-json-provider-jettison/pom.xml
index d930405..e7d7228 100755
--- a/examples/jaxrs-json-provider-jettison/pom.xml
+++ b/examples/jaxrs-json-provider-jettison/pom.xml
@@ -119,4 +119,20 @@
</plugins>
</build>
+ <!--
+ 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>