summaryrefslogtreecommitdiffstats
path: root/ms
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2019-07-23 13:02:29 -0400
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-07-23 13:02:29 -0400
commitdc872fbb56f2881f45780056cb1137e14dfa4328 (patch)
tree04a395039329f59af7a98aab6c15e4806e8e0ae8 /ms
parent6434d38dc045a10f17beec4d015348580ac09ddf (diff)
Fix bug in repository tag
Repository added for springfox points to snapshot versions, but does not properly prevent maven from looking there for released. Needed to add separate <repository> lines for snapshots and releases, configured appropriately. Change-Id: I64232e35bccbe607eebf14b9d2697c4b8d7f4488 Issue-ID: CCSDK-1519 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'ms')
-rwxr-xr-xms/blueprintsprocessor/parent/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/ms/blueprintsprocessor/parent/pom.xml b/ms/blueprintsprocessor/parent/pom.xml
index 4d05550ef..b03c7b4d7 100755
--- a/ms/blueprintsprocessor/parent/pom.xml
+++ b/ms/blueprintsprocessor/parent/pom.xml
@@ -626,7 +626,24 @@
<repository>
<id>spring-libs-milestone</id>
<name>Spring Milestone Maven Repository</name>
+ <url>http://oss.jfrog.org/artifactory/oss-release-local/</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>spring-libs-milestone-snapshot</id>
+ <name>Spring Milestone Maven Repository - snapshots</name>
<url>http://oss.jfrog.org/artifactory/oss-snapshot-local/</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
</repository>
</repositories>