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 e32a21a More missing <distributionManagement> sections in examples
e32a21a is described below
commit e32a21a7884bddc4f3ec6dbacff1b542d21f6aec
Author: Jonathan Gallimore <[email protected]>
AuthorDate: Wed Sep 11 22:17:00 2019 +0100
More missing <distributionManagement> sections in examples
---
examples/mp-metrics-gauge/pom.xml | 11 +++++++++++
examples/singleton-startup-ordering/pom.xml | 11 +++++++++++
2 files changed, 22 insertions(+)
diff --git a/examples/mp-metrics-gauge/pom.xml
b/examples/mp-metrics-gauge/pom.xml
index f832560..d5a10b0 100644
--- a/examples/mp-metrics-gauge/pom.xml
+++ b/examples/mp-metrics-gauge/pom.xml
@@ -93,4 +93,15 @@
</plugin>
</plugins>
</build>
+
+ <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>
\ No newline at end of file
diff --git a/examples/singleton-startup-ordering/pom.xml
b/examples/singleton-startup-ordering/pom.xml
index 8baa7d7..3626438 100755
--- a/examples/singleton-startup-ordering/pom.xml
+++ b/examples/singleton-startup-ordering/pom.xml
@@ -106,4 +106,15 @@
</plugins>
</build>
+ <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>