diff options
author | James Forsyth <jf2512@att.com> | 2018-12-06 19:13:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-06 19:13:02 +0000 |
commit | 88bb14a7c2a1638133182b6030a01eead186bb66 (patch) | |
tree | 77ba2150a0af8b2b0ae0b0635ab675cc4139ec44 /aai-schema-ingest/pom.xml | |
parent | ddf953affc477a77f9b68583f8ba0d6d5705882a (diff) | |
parent | 5948f878fa0ee735e81f1cf648d5d3bdb35048cd (diff) |
Merge "Update schema ingest library call schema service"
Diffstat (limited to 'aai-schema-ingest/pom.xml')
-rw-r--r-- | aai-schema-ingest/pom.xml | 62 |
1 files changed, 60 insertions, 2 deletions
diff --git a/aai-schema-ingest/pom.xml b/aai-schema-ingest/pom.xml index d2f93694..55210d7c 100644 --- a/aai-schema-ingest/pom.xml +++ b/aai-schema-ingest/pom.xml @@ -25,13 +25,17 @@ <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-common</artifactId> - <version>1.4.0-SNAPSHOT</version> + <version>1.4.1-SNAPSHOT</version> </parent> <artifactId>aai-schema-ingest</artifactId> <name>aai-schema-ingest</name> - <version>1.4.0-SNAPSHOT</version> + <version>1.4.1-SNAPSHOT</version> <packaging>jar</packaging> + <properties> + <eelf.core.version>1.0.0</eelf.core.version> + <httpclient.version>4.5.5</httpclient.version> + </properties> <build> <plugins> <plugin> @@ -70,6 +74,17 @@ <version>2.4.15</version> <classifier>indy</classifier> </dependency> + <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.6</version> + </dependency> + <dependency> + <groupId>org.onap.aai.aai-common</groupId> + <artifactId>aai-rest</artifactId> + <version>${project.version}</version> + </dependency> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-core</artifactId> @@ -81,12 +96,32 @@ <version>2.2.0</version> </dependency> <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + <version>2.0.1</version> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.18.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>4.3.18.RELEASE</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>1.5.12.RELEASE</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>${httpclient.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>4.3.18.RELEASE</version> </dependency> @@ -108,6 +143,29 @@ <version>1.10.19</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.att.eelf</groupId> + <artifactId>eelf-core</artifactId> + <version>${eelf.core.version}</version> + </dependency> + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>2.8.5</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>2.8.5</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>2.8.5</version> + <scope>compile</scope> + </dependency> </dependencies> <!-- Plugins and repositories --> <pluginRepositories> |