diff options
author | 2019-04-08 16:59:14 -0700 | |
---|---|---|
committer | 2019-04-08 16:59:14 -0700 | |
commit | 1995d2e5a0b202d499f59353920a17fc3aa7f4cb (patch) | |
tree | 044276cad68a035950888856f658d5177746e5e4 /components/datalake-handler/feeder/pom.xml | |
parent | 8dc9d71a2465f5c1e4beb52c2375efe02bcde174 (diff) |
Integrate Swagger for REST API
Issue-ID: DCAEGEN2-1400
Change-Id: Idd68e1f50b6572dcd4c2e17291628810f3813dba
Signed-off-by: Guobiao Mo <guobiaomo@chinamobile.com>
Diffstat (limited to 'components/datalake-handler/feeder/pom.xml')
-rw-r--r-- | components/datalake-handler/feeder/pom.xml | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/components/datalake-handler/feeder/pom.xml b/components/datalake-handler/feeder/pom.xml index 5b47a245..d6b50787 100644 --- a/components/datalake-handler/feeder/pom.xml +++ b/components/datalake-handler/feeder/pom.xml @@ -17,22 +17,21 @@ <dependencies> - + <dependency> - <groupId>org.mariadb.jdbc</groupId> - <artifactId>mariadb-java-client</artifactId> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> </dependency> - + <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> </dependency> - + <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.5.6</version> - </dependency> + </dependency> <dependency> <groupId>org.apache.kafka</groupId> @@ -48,12 +47,12 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> - - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-data-jpa</artifactId> - </dependency> - + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + </dependency> + <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-couchbase</artifactId> @@ -135,6 +134,20 @@ <version>6.0.10.Final</version> </dependency> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger2</artifactId> + <version>2.9.2</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger-ui</artifactId> + <version>2.9.2</version> + <scope>compile</scope> + </dependency> + </dependencies> <build> |