You can download swagger-annotations-1.5.5.jar in this page.
Open Source
swagger-annotations-1.5.5.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.swagger/swagger-annotations/pom.properties META-INF/maven/io.swagger/swagger-annotations/pom.xml io.swagger.annotations.Api.class io.swagger.annotations.ApiImplicitParam.class io.swagger.annotations.ApiImplicitParams.class io.swagger.annotations.ApiModel.class io.swagger.annotations.ApiModelProperty.class io.swagger.annotations.ApiOperation.class io.swagger.annotations.ApiParam.class io.swagger.annotations.ApiResponse.class io.swagger.annotations.ApiResponses.class io.swagger.annotations.Authorization.class io.swagger.annotations.AuthorizationScope.class io.swagger.annotations.Contact.class io.swagger.annotations.Example.class io.swagger.annotations.ExampleProperty.class io.swagger.annotations.Extension.class io.swagger.annotations.ExtensionProperty.class io.swagger.annotations.ExternalDocs.class io.swagger.annotations.Info.class io.swagger.annotations.License.class io.swagger.annotations.ResponseHeader.class io.swagger.annotations.SwaggerDefinition.class io.swagger.annotations.Tag.class
swagger-annotations-1.5.5.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"> <parent> <groupId>io.swagger</groupId> <artifactId>swagger-project</artifactId> <version>1.5.5</version> <relativePath>../..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> <version>1.5.5</version> <packaging>bundle</packaging> <name>swagger-annotations</name> <build> <sourceDirectory>src/main/java</sourceDirectory> <defaultGoal>install</defaultGoal> <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.annotations</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>publish-javadocs</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${enforcer-plugin-version}</version> <executions> <execution> <id>enforce-no-snapshots</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireReleaseVersion> <message>Publish javadocs for a SNAPSHOT is not allowed.</message> </requireReleaseVersion> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>copy-resources</id> <!-- here the phase you need --> <phase>deploy</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/javadocprep/swagger-core/${project.version}/apidocs</outputDirectory> <resources> <resource> <directory>${project.build.directory}/apidocs</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.pyx4j</groupId> <artifactId>maven-junction-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>link</goal> </goals> </execution> </executions> <configuration> <links> <!-- link the html generated by client to webapp directory --> <link> <dst>${project.build.directory}/javadocprep/swagger-core/current</dst> <src>${project.build.directory}/javadocprep/swagger-core/${project.version}</src> </link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <version>1.1</version> <configuration> <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment> <content>${project.build.directory}/javadocprep</content> <skipDeletedFiles>true</skipDeletedFiles> <pubScmUrl>scm:git:https://github.com/swagger-api/swagger-core</pubScmUrl> <scmBranch>gh-pages</scmBranch> </configuration> <executions> <execution> <id>publish-javadocs</id> <phase>deploy</phase> <goals> <goal>publish-scm</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> <version>1.5.5</version> </dependency>
If you think the following swagger-annotations-1.5.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download swagger-annotations-1.5.5.jar file