You can download dropwizard-swagger-1.0.0.jar in this page.
Apache License, Version 2.0
dropwizard-swagger-1.0.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.smoketurner/dropwizard-swagger/pom.properties META-INF/maven/com.smoketurner/dropwizard-swagger/pom.xml io.federecio.dropwizard.swagger.ConfigurationHelper.class io.federecio.dropwizard.swagger.SwaggerBundle.class io.federecio.dropwizard.swagger.SwaggerBundleConfiguration.class io.federecio.dropwizard.swagger.SwaggerResource.class io.federecio.dropwizard.swagger.SwaggerView.class io.federecio.dropwizard.swagger.SwaggerViewConfiguration.class io/federecio/dropwizard/swagger/index.ftl swagger-static/css/print.css swagger-static/css/reset.css swagger-static/css/screen.css swagger-static/css/style.css swagger-static/css/typography.css swagger-static/fonts/DroidSans-Bold.ttf swagger-static/fonts/DroidSans.ttf swagger-static/images/collapse.gif swagger-static/images/expand.gif swagger-static/images/explorer_icons.png swagger-static/images/favicon-16x16.png swagger-static/images/favicon-32x32.png swagger-static/images/favicon.ico 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/lang/en.js swagger-static/lang/es.js swagger-static/lang/fr.js swagger-static/lang/geo.js swagger-static/lang/it.js swagger-static/lang/ja.js swagger-static/lang/ko-kr.js swagger-static/lang/pl.js swagger-static/lang/pt.js swagger-static/lang/ru.js swagger-static/lang/tr.js swagger-static/lang/translator.js swagger-static/lang/zh-cn.js swagger-static/lib/backbone-min.js swagger-static/lib/es5-shim.js swagger-static/lib/handlebars-2.0.0.js swagger-static/lib/highlight.9.1.0.pack.js swagger-static/lib/highlight.9.1.0.pack_extended.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/js-yaml.min.js swagger-static/lib/jsoneditor.min.js swagger-static/lib/lodash.min.js swagger-static/lib/marked.js swagger-static/lib/object-assign-pollyfill.js swagger-static/lib/swagger-oauth.js swagger-static/o2c.html swagger-static/swagger-ui.js swagger-static/swagger-ui.min.js
dropwizard-swagger-1.0.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>com.smoketurner</groupId> <artifactId>dropwizard-swagger</artifactId> <version>1.0.0-1</version> <name>Dropwizard Swagger support</name> <description>A simple way to document your REST APIs in DropWizard using Swagger</description> <url>https://github.com/smoketurner/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> <developer> <id>jplock</id> <name>Justin Plock</name> <email>jplock@smoketurner.com</email> <timezone>America/New_York</timezone> </developer> </developers> <distributionManagement> <site> <id>dropwizard-swagger</id> <url>${project.version}</url> </site> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:git://github.com:smoketurner/dropwizard-swagger.git</connection> <developerConnection>scm:git:git@github.com:smoketurner/dropwizard-swagger.git</developerConnection> <url>http://github.com/smoketurner/dropwizard-swagger</url> <tag>v1.0.0-1</tag> </scm> <properties> <dropwizard.version>1.0.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.8</jdk.version> <swagger.version>1.5.9</swagger.version> </properties> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/smoketurner/dropwizard-swagger</url> </ciManagement> <issueManagement> <system>github</system> <url>https://github.com/smoketurner/dropwizard-swagger/issues</url> </issueManagement> <dependencyManagement> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-bom</artifactId> <version>${dropwizard.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <profiles> <profile> <id>java8-disable-strict-javadoc</id> <activation> <jdk>[1.8,)</jdk> </activation> <properties> <javadoc.doclint.none>-Xdoclint:none</javadoc.doclint.none> </properties> </profile> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <passphrase>${gpg.passphrase}</passphrase> <keyname>8812F4E9</keyname> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-assets</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-views</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-views-freemarker</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-multipart</artifactId> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-jersey2-jaxrs</artifactId> <version>${swagger.version}</version> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> <exclusion> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-jaxb-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-joda</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> <exclusion> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-multipart</artifactId> </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet-core</artifactId> </exclusion> </exclusions> </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>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>3.0.0</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.dropwizard</groupId> <artifactId>dropwizard-auth</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>2.53.1</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> <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.5.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <optimize>true</optimize> <debug>true</debug> <compilerId>javac-with-errorprone</compilerId> <forceJavacCompilerUse>true</forceJavacCompilerUse> <showWarnings>true</showWarnings> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-javac-errorprone</artifactId> <version>2.8</version> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>2.0.10</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <excludes> <exclude>**/*SeleniumTest.java</exclude> </excludes> <forkCount>1</forkCount> <reuseForks>false</reuseForks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.19.1</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-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <additionalparam>${javadoc.doclint.none}</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.5.1</version> <configuration> <skipDeploy>true</skipDeploy> </configuration> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <configuration> <path>${project.distributionManagement.site.url}</path> <message>Creating site for ${project.name} ${project.version}</message> <merge>true</merge> <noJekyll>true</noJekyll> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site-deploy</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> <configuration> <formats> <format>xml</format> </formats> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.2.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.4</version> <configuration> <effort>Max</effort> <threshold>Default</threshold> <onlyAnalyze>io.federecio.dropwizard.swagger.*</onlyAnalyze> <xmlOutput>true</xmlOutput> <excludeFilterFile>${basedir}/../findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.4.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.3</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> <autoVersionSubmodules>true</autoVersionSubmodules> <mavenExecutorId>forked-path</mavenExecutorId> <tagNameFormat>v@{project.version}</tagNameFormat> <preparationGoals>clean test</preparationGoals> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.11</version> <configuration> <header>license.txt</header> <excludes> <exclude>**/README</exclude> <exclude>**/LICENSE</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> <exclude>src/site/**</exclude> <exclude>*.xml</exclude> <exclude>*.sh</exclude> <exclude>*.yml</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <reportSets> <reportSet> <reports> <report>index</report> <report>summary</report> <report>dependency-info</report> <report>license</report> <report>scm</report> <report>issue-tracking</report> <report>mailing-list</report> <report>cim</report> <report>project-team</report> <report>dependencies</report> <report>dependency-convergence</report> <report>modules</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <additionalparam>${javadoc.doclint.none}</additionalparam> <quiet>true</quiet> </configuration> <reportSets> <reportSet> <id>html</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>
<dependency> <groupId>com.smoketurner</groupId> <artifactId>dropwizard-swagger</artifactId> <version>1.0.0</version> </dependency>
If you think the following dropwizard-swagger-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download dropwizard-swagger-1.0.0.jar file