You can download swagger-jaxrs-1.5.15.jar in this page.
Open Source
swagger-jaxrs-1.5.15.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.swagger/swagger-jaxrs/pom.properties META-INF/maven/io.swagger/swagger-jaxrs/pom.xml io.swagger.jaxrs.DefaultParameterExtension.class io.swagger.jaxrs.PATCH.class io.swagger.jaxrs.Reader.class io.swagger.jaxrs.config.AbstractScanner.class io.swagger.jaxrs.config.BeanConfig.class io.swagger.jaxrs.config.DefaultJaxrsConfig.class io.swagger.jaxrs.config.DefaultJaxrsScanner.class io.swagger.jaxrs.config.DefaultReaderConfig.class io.swagger.jaxrs.config.JaxrsScanner.class io.swagger.jaxrs.config.ReaderConfig.class io.swagger.jaxrs.config.ReaderConfigUtils.class io.swagger.jaxrs.config.ReaderListener.class io.swagger.jaxrs.config.ReflectiveJaxrsScanner.class io.swagger.jaxrs.config.SwaggerConfigLocator.class io.swagger.jaxrs.config.SwaggerContextService.class io.swagger.jaxrs.config.SwaggerScannerLocator.class io.swagger.jaxrs.config.WebXMLReader.class io.swagger.jaxrs.ext.AbstractSwaggerExtension.class io.swagger.jaxrs.ext.SwaggerExtension.class io.swagger.jaxrs.ext.SwaggerExtensions.class io.swagger.jaxrs.listing.AcceptHeaderApiListingResource.class io.swagger.jaxrs.listing.ApiListingResource.class io.swagger.jaxrs.listing.BaseApiListingResource.class io.swagger.jaxrs.listing.SwaggerSerializers.class io.swagger.jaxrs.utils.ReaderUtils.class
swagger-jaxrs-1.5.15.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/maven-v4_0_0.xsd"> <parent> <groupId>io.swagger</groupId> <artifactId>swagger-project</artifactId> <version>1.5.15</version> <relativePath>../..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>swagger-jaxrs</artifactId> <packaging>bundle</packaging> <name>swagger-jaxrs</name> <build> <sourceDirectory>src/main/java</sourceDirectory> <defaultGoal>install</defaultGoal> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>logback.xml</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${felix-version}</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package> io.swagger.jaxrs, io.swagger.jaxrs.config, io.swagger.jaxrs.ext, io.swagger.jaxrs.listing </Export-Package> <Import-Package> javax.ws.rs*;version="[1.1,3)", * </Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${failsafe-plugin-version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>${jetty-version}</version> <configuration> <scanIntervalSeconds>10</scanIntervalSeconds> <stopKey>a</stopKey> <stopPort>9999</stopPort> <useTestScope>true</useTestScope> <webAppSourceDirectory>${project.basedir}/src/test/webapp</webAppSourceDirectory> </configuration> <dependencies> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-servlet</artifactId> <version>${jersey-version}</version> </dependency> </dependencies> <executions> <execution> <id>start-jetty</id> <phase>pre-integration-test</phase> <goals> <goal>start</goal> </goals> <configuration> <scanIntervalSeconds>0</scanIntervalSeconds> </configuration> </execution> <execution> <id>stop-jetty</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-version}</version> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-core</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>${project.parent.groupId}</groupId> <artifactId>swagger-core</artifactId> <version>${project.parent.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <!-- built with jsr311 but compatible with jsr311 or jsr399 in runtime --> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.restassured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> </dependencies> <properties> <coverage.complexity.minimum>0.50</coverage.complexity.minimum> <coverage.line.minimum>0.00</coverage.line.minimum> <coverage.missed.classes>4</coverage.missed.classes> </properties> </project>
<dependency> <groupId>io.swagger</groupId> <artifactId>swagger-jaxrs</artifactId> <version>1.5.15</version> </dependency>
If you think the following swagger-jaxrs-1.5.15.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download swagger-jaxrs-1.5.15.jar file