diff options
-rw-r--r-- | aai-resources/pom.xml | 4 | ||||
-rw-r--r-- | pom.xml | 18 |
2 files changed, 20 insertions, 2 deletions
diff --git a/aai-resources/pom.xml b/aai-resources/pom.xml index e124512..d98c478 100644 --- a/aai-resources/pom.xml +++ b/aai-resources/pom.xml @@ -36,8 +36,8 @@ <start-class>org.onap.aai.ResourcesApp</start-class> <aai.schema.version>1.0.1</aai.schema.version> - <aai.core.version>1.4.2</aai.core.version> - <aai.schema.ingest.version>1.4.2</aai.schema.ingest.version> + <aai.core.version>1.4.3</aai.core.version> + <aai.schema.ingest.version>1.4.3</aai.schema.ingest.version> <hbase.version>1.0.2</hbase.version> <spring.boot.version>1.5.20.RELEASE</spring.boot.version> @@ -45,6 +45,7 @@ <site.path>/content/sites/site/org/onap/aai/resources/${project.artifactId}/${project.version}</site.path> <release.path>/content/repositories/releases/</release.path> <snapshot.path>/content/repositories/snapshots/</snapshot.path> + <staging.path>/content/repositories/staging/</staging.path> <!-- GMaven plugin uses this property to figure out the name of the docker tag --> <aai.project.version>${project.version}</aai.project.version> </properties> @@ -198,4 +199,21 @@ <url>dav:${nexusproxy}${site.path}</url> </site> </distributionManagement> + <repositories> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${nexusproxy}${release.path}</url> + </repository> + <repository> + <id>ecomp-staging</id> + <name>ECOMP Staging Repository</name> + <url>${nexusproxy}${staging.path}</url> + </repository> + <repository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${nexusproxy}${snapshot.path}</url> + </repository> + </repositories> </project> |