You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ay...@apache.org on 2015/07/09 14:18:36 UTC

[3/6] cxf git commit: CXF-6046: Enhance SwaggerFeature to support JAX-RS annotations. Replaced embedded Swagger UI with webjar.

CXF-6046: Enhance SwaggerFeature to support JAX-RS annotations. Replaced embedded Swagger UI with webjar.


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/068c2916
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/068c2916
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/068c2916

Branch: refs/heads/3.0.x-fixes
Commit: 068c2916f8c7f74e5f3154c43775be74fdad5816
Parents: b2794a4
Author: reta <dr...@gmail.com>
Authored: Sun Nov 2 17:29:55 2014 -0500
Committer: Akitoshi Yoshida <ay...@apache.org>
Committed: Thu Jul 9 13:51:22 2015 +0200

----------------------------------------------------------------------
 .../samples/jax_rs/description_swagger/pom.xml  | 23 ++++++++++++--------
 1 file changed, 14 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/068c2916/distribution/src/main/release/samples/jax_rs/description_swagger/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/description_swagger/pom.xml b/distribution/src/main/release/samples/jax_rs/description_swagger/pom.xml
index 541ec01..0e60fd4 100644
--- a/distribution/src/main/release/samples/jax_rs/description_swagger/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/description_swagger/pom.xml
@@ -108,20 +108,25 @@
               <scope>provided</scope>
         </dependency>
         <dependency>
+		  	<groupId>org.webjars</groupId>
+		  	<artifactId>swagger-ui</artifactId>
+		  	<version>2.0.24</version>
+        </dependency>
+        <dependency>
             <groupId>javassist</groupId>
             <artifactId>javassist</artifactId>
             <version>3.12.1.GA</version>
         </dependency>     
         <dependency>
-              <groupId>com.fasterxml.jackson.jaxrs</groupId>
-              <artifactId>jackson-jaxrs-json-provider</artifactId>
-              <version>2.2.2</version>
-        </dependency>           
-           <dependency>
-            <groupId>com.fasterxml.jackson.core</groupId>
-               <artifactId>jackson-core</artifactId>
-               <version>2.2.2</version>
-           </dependency>    
+		  	<groupId>com.fasterxml.jackson.jaxrs</groupId>
+		  	<artifactId>jackson-jaxrs-json-provider</artifactId>
+		  	<version>2.2.2</version>
+		</dependency>   		
+   		<dependency>
+			<groupId>com.fasterxml.jackson.core</groupId>
+   			<artifactId>jackson-core</artifactId>
+   			<version>2.2.2</version>
+   		</dependency>    
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-rt-transports-http</artifactId>