diff options
author | Jimmy Forsyth <jf2512@att.com> | 2019-06-26 18:41:27 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2019-06-26 19:05:18 -0400 |
commit | fad060963cdfea8363eaeba4b8e7d4dc12e8ed22 (patch) | |
tree | b5c9c098063bd56207a3bffa374eae19fc034f2a /aai-schema-gen | |
parent | 36c924ba8bb967ab1a5df720cc58981361d7a265 (diff) |
Prepare for global-jjb
Issue-ID: AAI-2467
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: I156b2a6bb35e240aef97c3dec5d1a042c187ea32
Diffstat (limited to 'aai-schema-gen')
-rw-r--r-- | aai-schema-gen/pom.xml | 47 |
1 files changed, 41 insertions, 6 deletions
diff --git a/aai-schema-gen/pom.xml b/aai-schema-gen/pom.xml index 109ad57..9653426 100644 --- a/aai-schema-gen/pom.xml +++ b/aai-schema-gen/pom.xml @@ -27,11 +27,11 @@ <parent> <groupId>org.onap.aai.schema-service</groupId> <artifactId>schema-service</artifactId> - <version>1.5.0-SNAPSHOT</version> + <version>1.5.1-SNAPSHOT</version> </parent> <artifactId>aai-schema-gen</artifactId> <name>aai-schema-gen</name> - <version>1.5.0-SNAPSHOT</version> + <version>1.5.1-SNAPSHOT</version> <properties> <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> <!-- Start of Default ONAP Schema Properties --> @@ -50,6 +50,7 @@ <schema.version.edge.label.start>v12</schema.version.edge.label.start> <schema.version.api.default>v16</schema.version.api.default> <schema.version.list>v10,v11,v12,v13,v14,v15,v16</schema.version.list> + <springframework.version>4.3.18.RELEASE</springframework.version> <!-- End of Default ONAP Schema Properties --> </properties> <profiles> @@ -70,6 +71,7 @@ <schema.version.api.default>v15</schema.version.api.default> <schema.version.list>v10,v11,v12,v13,v14,v15,v16</schema.version.list> <gendoc.version>v16</gendoc.version> + <springframework.version>4.3.18.RELEASE</springframework.version> </properties> </profile> <!-- End of ONAP profile --> @@ -599,6 +601,43 @@ </build> </profile> </profiles> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-expression</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-webmvc</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <version>${springframework.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>junit</groupId> @@ -673,10 +712,6 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> - <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - </plugin> </plugins> <resources> <resource> |