You can download brooklyn-utils-rest-swagger-0.9.0.jar in this page.
Apache License
brooklyn-utils-rest-swagger-0.9.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.brooklyn/brooklyn-utils-rest-swagger/pom.properties META-INF/maven/org.apache.brooklyn/brooklyn-utils-rest-swagger/pom.xml io.swagger.config.ConfigFactory.class io.swagger.config.FilterFactory.class io.swagger.config.Scanner.class io.swagger.config.ScannerFactory.class io.swagger.config.SwaggerConfig.class io.swagger.converter.ModelConverter.class io.swagger.converter.ModelConverterContext.class io.swagger.converter.ModelConverterContextImpl.class io.swagger.converter.ModelConverters.class io.swagger.converter.PrimitiveType.class io.swagger.core.filter.AbstractSpecFilter.class io.swagger.core.filter.SpecFilter.class io.swagger.core.filter.SwaggerSpecFilter.class io.swagger.jackson.AbstractModelConverter.class io.swagger.jackson.JAXBAnnotationsHelper.class io.swagger.jackson.ModelResolver.class io.swagger.jackson.PackageVersion.class io.swagger.jackson.SwaggerAnnotationIntrospector.class io.swagger.jackson.SwaggerModule.class io.swagger.jackson.TypeNameResolver.class io.swagger.jaxrs.DefaultParameterExtension.class io.swagger.jaxrs.PATCH.class io.swagger.jaxrs.ParameterProcessor.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.WebXMLReader.class io.swagger.jaxrs.ext.AbstractSwaggerExtension.class io.swagger.jaxrs.ext.SwaggerExtension.class io.swagger.jaxrs.ext.SwaggerExtensions.class io.swagger.jaxrs.json.JacksonJsonProvider.class io.swagger.jaxrs.listing.ApiListingResource.class io.swagger.jaxrs.listing.SwaggerSerializers.class io.swagger.jaxrs.utils.PathUtils.class io.swagger.jaxrs.utils.ReaderUtils.class io.swagger.jaxrs.utils.ReflectionUtils.class io.swagger.model.ApiDescription.class io.swagger.model.ApiInfo.class io.swagger.util.AllowableEnumValues.class io.swagger.util.AllowableRangeValues.class io.swagger.util.AllowableValues.class io.swagger.util.AllowableValuesUtils.class io.swagger.util.DeserializationModule.class io.swagger.util.Json.class io.swagger.util.ModelDeserializer.class io.swagger.util.ObjectMapperFactory.class io.swagger.util.ParameterDeserializer.class io.swagger.util.PathDeserializer.class io.swagger.util.PrimitiveType.class io.swagger.util.PropertyDeserializer.class io.swagger.util.ResponseDeserializer.class io.swagger.util.SecurityDefinitionDeserializer.class io.swagger.util.Yaml.class org.apache.brooklyn.rest.apidoc.RestApiResourceScanner.class
brooklyn-utils-rest-swagger-0.9.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <packaging>bundle</packaging> <artifactId>brooklyn-utils-rest-swagger</artifactId> <name>Brooklyn REST Swagger Apidoc Utilities</name> <description> Swagger REST API utility classes and methods developed for Brooklyn but not dependendent on Brooklyn </description> <parent> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-parent</artifactId> <version>0.9.0</version> <!-- BROOKLYN_VERSION --> <relativePath>../../parent/pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-utils-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> </dependency> <dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-test-support</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-core</artifactId> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-jaxrs</artifactId> <exclusions> <exclusion> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> </exclusion> <exclusion> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> </dependencies> <build> <plugins> <!-- <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>io.swagger:swagger-core</include> <include>io.swagger:swagger-jaxrs</include> </includes> </artifactSet> <finalName>${project.artifactId}-${project.version}-with-swagger</finalName> <outputFile>${project.build.directory}/${project.artifactId}-shaded-${project.version}.jar</outputFile> </configuration> </execution> </executions> </plugin>--> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <supportedProjectTypes> <supportedProjectType>jar</supportedProjectType> <supportedProjectType>bundle</supportedProjectType> </supportedProjectTypes> <excludeDependencies>brooklyn-util-common,brooklyn-logback-includes</excludeDependencies> <instructions> <!-- This tells maven-bundle-plugin to include and export swagger-core and swagger-jaxrs into this bundle, but to not include other dependencies that are properly bundled themselves. We also need the swagger packages exported, since we're going to use them in higher-level bundles. The only way I could convince maven-bundle-plugin to do all this was to manually specify the packages in swagger-core and swagger-jaxrs versions 1.5.3 FIXME: move to >=swagger-1.5.4 (which does not suffer from split packages and is a proper bundle), but those depend on guava-18.0 instead of brooklyn's currently used guava-17.x --> <Export-Package> org.apache.brooklyn.rest.*, io.swagger.config.*, io.swagger.converter.*, io.swagger.core.filter.*, io.swagger.jackson.*, io.swagger.model.*, io.swagger.util.*, io.swagger.jaxrs.*, !* </Export-Package> <Import-Package> javax.ws.rs;version="[1.1,2.0]", javax.ws.rs.core;version="[1.1,2.0]", javax.ws.rs.ext;version="[1.1,2.0]", * </Import-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-utils-rest-swagger</artifactId> <version>0.9.0</version> </dependency>
If you think the following brooklyn-utils-rest-swagger-0.9.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download brooklyn-utils-rest-swagger-0.9.0.jar file