You can download dropwizard-swagger-0.6.jar in this page.
Apache License, Version 2.0
dropwizard-swagger-0.6.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.federecio/dropwizard-swagger/pom.properties META-INF/maven/io.federecio/dropwizard-swagger/pom.xml io.federecio.dropwizard.swagger.Constants.class io.federecio.dropwizard.swagger.SwaggerBundle.class io.federecio.dropwizard.swagger.SwaggerBundleConfiguration.class io.federecio.dropwizard.swagger.SwaggerConfiguration.class io.federecio.dropwizard.swagger.SwaggerDropwizard.class io.federecio.dropwizard.swagger.SwaggerHostResolver.class io.federecio.dropwizard.swagger.SwaggerResource.class io.federecio.dropwizard.swagger.SwaggerView.class io/federecio/dropwizard/swagger/index.ftl swagger-static/css/reset.css swagger-static/css/screen.css swagger-static/css/typography.css swagger-static/fonts/droid-sans-v6-latin-700.eot swagger-static/fonts/droid-sans-v6-latin-700.svg swagger-static/fonts/droid-sans-v6-latin-700.ttf swagger-static/fonts/droid-sans-v6-latin-700.woff swagger-static/fonts/droid-sans-v6-latin-700.woff2 swagger-static/fonts/droid-sans-v6-latin-regular.eot swagger-static/fonts/droid-sans-v6-latin-regular.svg swagger-static/fonts/droid-sans-v6-latin-regular.ttf swagger-static/fonts/droid-sans-v6-latin-regular.woff swagger-static/fonts/droid-sans-v6-latin-regular.woff2 swagger-static/images/explorer_icons.png swagger-static/images/logo_small.png swagger-static/images/pet_store_api.png swagger-static/images/throbber.gif swagger-static/images/wordnik_api.png swagger-static/index.html swagger-static/lib/backbone-min.js swagger-static/lib/handlebars-2.0.0.js swagger-static/lib/highlight.7.3.pack.js swagger-static/lib/jquery-1.8.0.min.js swagger-static/lib/jquery.ba-bbq.min.js swagger-static/lib/jquery.slideto.min.js swagger-static/lib/jquery.wiggle.min.js swagger-static/lib/marked.js swagger-static/lib/shred.bundle.js swagger-static/lib/shred/content.js swagger-static/lib/swagger-client.js swagger-static/lib/swagger-oauth.js swagger-static/lib/underscore-min.js swagger-static/o2c.html swagger-static/swagger-ui.js swagger-static/swagger-ui.min.js
dropwizard-swagger-0.6.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.federecio</groupId> <artifactId>dropwizard-swagger</artifactId> <version>0.6</version> <name>Dropwizard Swagger support</name> <description>A simple way to document your REST APIs in DropWizard using Swagger</description> <url>https://github.com/federecio/dropwizard-swagger/</url> <inceptionYear>2014</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <name>Federico Recio</name> <url>http://about.me/federecio</url> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Maven Central Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Maven Central Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:git://github.com:federecio/dropwizard-swagger.git</connection> <developerConnection>scm:git:git@github.com:federecio/dropwizard-swagger.git</developerConnection> <url>http://github.com/federecio/dropwizard-swagger</url> <tag>HEAD</tag> </scm> <properties> <dropwizard.version>0.8.0</dropwizard.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <file.encoding>UTF-8</file.encoding> <jdk.version>1.7</jdk.version> <swagger.version>1.3.12</swagger.version> </properties> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> <version>${dropwizard.version}</version> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-assets</artifactId> <version>${dropwizard.version}</version> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-views</artifactId> <version>${dropwizard.version}</version> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-views-freemarker</artifactId> <version>${dropwizard.version}</version> </dependency> <dependency> <groupId>com.wordnik</groupId> <artifactId>swagger-jaxrs_2.10</artifactId> <version>${swagger.version}</version> <exclusions> <exclusion> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-scala</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> <exclusion> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </exclusion> <exclusion> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </exclusion> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </exclusion> <exclusion> <groupId>org.scala-lang</groupId> <artifactId>scala-reflect</artifactId> </exclusion> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> <exclusion> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.10.4</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-reflect</artifactId> <version>2.10.4</version> </dependency> <!-- xml-apis should be on version 1.4.01 for selenium to work --> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.4.01</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.restassured</groupId> <artifactId>rest-assured</artifactId> <version>1.7.2</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.federecio</groupId> <artifactId>dropwizard-junit</artifactId> <version>0.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium.client-drivers</groupId> <artifactId>selenium-java-client-driver</artifactId> <version>1.0.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>2.45.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-http</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-io</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> </exclusion> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.2</version> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <excludes> <exclude>**/*SeleniumTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.17</version> <configuration> <includes> <include>**/*SeleniumTest.java</include> </includes> <!-- need to run each Selenium test in its own jvm process otherwise swagger's static configuration ConfigFactory conflicts between tests --> <forkCount>1</forkCount> <reuseForks>false</reuseForks> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <id>enforce</id> <configuration> <rules> <DependencyConvergence /> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.6</version> <configuration> <header>license.txt</header> <excludes> <exclude>**/README</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> <exclude>*.xml</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>io.federecio</groupId> <artifactId>dropwizard-swagger</artifactId> <version>0.6</version> </dependency>
If you think the following dropwizard-swagger-0.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download dropwizard-swagger-0.6.jar file