| 组织ID: |
com.wordnik |
| 项目ID: |
swagger-core_2.9.1 |
| 版本: |
1.1-SNAPSHOT.120119 |
| 最后修改时间: |
2019-10-22 19:59:08 |
| 包类型: |
jar |
| 标题: |
swagger-core |
| 相关URL: |
https://github.com/wordnik/swagger-core |
| 大小: |
144.04KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.wordnik</groupId>
<artifactId>swagger-core_2.9.1</artifactId>
<version>1.1-SNAPSHOT.120119</version>
</dependency>
|
| Gradle引入代码: |
com.wordnik:swagger-core_2.9.1:1.1-SNAPSHOT.120119
|
| 下载Jar包: |
|
| POM文件内容: |
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.wordnik</groupId>
<artifactId>swagger-core_2.9.1</artifactId>
<packaging>jar</packaging>
<name>swagger-core</name>
<version>1.1-SNAPSHOT.120119</version>
<url>https://github.com/wordnik/swagger-core</url>
<scm>
<connection>scm:git:git@github.com:wordnik/swagger-core.git</connection>
<developerConnection>scm:git:git@github.com:wordnik/swagger-core.git</developerConnection>
<url>https://github.com/wordnik/swagger-core</url>
</scm>
<prerequisites>
<maven>2.2.0</maven>
</prerequisites>
<developers>
<developer>
<id>fehguy</id>
<name>Tony Tam</name>
<email>fehguy@gmail.com</email>
</developer>
<developer>
<id>zeke</id>
<name>Zeke Sikelianos</name>
<email>zeke@wordnik.com</email>
</developer>
<developer>
<id>ayush</id>
<name>Ayush Gupta</name>
<email>ayush@glugbot.com</email>
</developer>
<developer>
<id>rpidikiti</id>
<name>Ramesh Pidikiti</name>
<email>ramesh@wordnik.com</email>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/wordnik/swagger-core/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>wordnik-api</name>
<archive>https://groups.google.com/forum/#!forum/wordnik-api</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<outputDirectory>target/classes</outputDirectory>
<testOutputDirectory>target/test-classes</testOutputDirectory>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>1.8</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-alpha-6</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-1</version>
</extension>
</extensions>
<defaultGoal>install</defaultGoal>
<directory>target</directory>
<finalName>${artifactId}-${version}</finalName>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmArgs>
<jvmArg>-Xmx384m</jvmArg>
</jvmArgs>
<args>
<arg>-target:jvm-1.5</arg>
<arg>-deprecation</arg>
</args>
<launchers>
<launcher>
<id>run-scalatest</id>
<mainClass>org.scalatest.tools.Runner</mainClass>
<args>
<arg>-p</arg>
<arg>${project.build.testOutputDirectory}</arg>
</args>
<jvmArgs>
<jvmArg>-Xmx512m</jvmArg>
</jvmArgs>
</launcher>
</launchers>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin-version}</version>
<configuration>
<sourcepath>${basedir}/src/main/java</sourcepath>
<aggregate>true</aggregate>
<source>1.6</source>
<encoding>UTF-8</encoding>
<maxmemory>1g</maxmemory>
<links>
<link>http://java.sun.com/javase/6/docs/api/</link>
</links>
<excludePackageNames>${javadoc.package.exclude}</excludePackageNames>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<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>install</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<mode>development</mode>
<url>${pom.url}</url>
<implementation-version>${pom.version}</implementation-version>
<package>com.wordnik</package>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>${maven-scala-plugin-version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release-profile</id>
<properties>
<skipTests>true</skipTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration></configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>prepare-package</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/scala</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration></configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>install</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<outputDirectory>target/site</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
<debug>true</debug>
<sourcepath>${basedir}/src/main/java</sourcepath>
<links>
<link>http://java.sun.com/javaee/5/docs/api</link>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
<excludePackageNames />
</configuration>
</plugin>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>${maven-scala-plugin-version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>project-team</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-tools-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix-version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<pluginRepositories>
<pluginRepository>
<id>scala-tools.org</id>
<name>Scala-Tools Maven2 Repository</name>
<url>http://scala-tools.org/repo-releases</url>
</pluginRepository>
</pluginRepositories>
<repositories />
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-api-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>${jersey-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>${jersey-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>${jersey-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>${jackson-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-xc</artifactId>
<version>${jackson-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala-version}</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.9.1</artifactId>
<version>${scala-test-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<maven-javadoc-plugin-version>2.8</maven-javadoc-plugin-version>
<servlet-api-version>2.5</servlet-api-version>
<maven-scala-plugin-version>2.15.2</maven-scala-plugin-version>
<jersey-version>1.7</jersey-version>
<jackson-version>1.7.7</jackson-version>
<junit-version>4.4</junit-version>
<maven-plugin.version>1.0.0</maven-plugin.version>
<commons-lang-version>2.4</commons-lang-version>
<scala-version>2.9.1</scala-version>
<slf4j-version>1.6.1</slf4j-version>
<scala-test-version>1.6.1</scala-test-version>
</properties>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.wordnik.swagger.core.Api.class
com.wordnik.swagger.core.ApiAuthorizationFilter.class
com.wordnik.swagger.core.ApiError.class
com.wordnik.swagger.core.ApiErrors.class
com.wordnik.swagger.core.ApiHelpMessageBodyWriter.class
com.wordnik.swagger.core.ApiListing$$anonfun$com$wordnik$swagger$core$ApiListing$$isApiAdded$1.class
com.wordnik.swagger.core.ApiListing$$anonfun$getAllApis$1.class
com.wordnik.swagger.core.ApiListing$class.class
com.wordnik.swagger.core.ApiListing.class
com.wordnik.swagger.core.ApiListingResourceJSON.class
com.wordnik.swagger.core.ApiListingResourceXML.class
com.wordnik.swagger.core.ApiModelParser$$anonfun$parse$2.class
com.wordnik.swagger.core.ApiModelParser$$anonfun$parse$3.class
com.wordnik.swagger.core.ApiModelParser$$anonfun$parsePropertyAnnotations$1.class
com.wordnik.swagger.core.ApiModelParser$$anonfun$parsePropertyAnnotations$2.class
com.wordnik.swagger.core.ApiModelParser.class
com.wordnik.swagger.core.ApiOperation.class
com.wordnik.swagger.core.ApiParam.class
com.wordnik.swagger.core.ApiParamImplicit.class
com.wordnik.swagger.core.ApiParamsImplicit.class
com.wordnik.swagger.core.ApiPropertiesReader$.class
com.wordnik.swagger.core.ApiPropertiesReader.class
com.wordnik.swagger.core.ApiProperty.class
com.wordnik.swagger.core.ApiReader$.class
com.wordnik.swagger.core.ApiReader.class
com.wordnik.swagger.core.ApiResponse.class
com.wordnik.swagger.core.ApiResponses.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$com$wordnik$swagger$core$ApiSpecParser$$parseMethod$1$$anonfun$apply$1.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$com$wordnik$swagger$core$ApiSpecParser$$parseMethod$1.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$com$wordnik$swagger$core$ApiSpecParser$$parseMethod$2$$anonfun$apply$2.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$com$wordnik$swagger$core$ApiSpecParser$$parseMethod$2.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$com$wordnik$swagger$core$ApiSpecParser$$parseMethod$3.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$getEndPoint$1.class
com.wordnik.swagger.core.ApiSpecParser$$anonfun$parse$1.class
com.wordnik.swagger.core.ApiSpecParser.class
com.wordnik.swagger.core.ApiValues.class
com.wordnik.swagger.core.AuthorizationFilter.class
com.wordnik.swagger.core.BaseApiParser$class.class
com.wordnik.swagger.core.BaseApiParser.class
com.wordnik.swagger.core.ConfigReader.class
com.wordnik.swagger.core.ConfigReaderFactory$.class
com.wordnik.swagger.core.ConfigReaderFactory.class
com.wordnik.swagger.core.Documentation$$anonfun$clone$1.class
com.wordnik.swagger.core.Documentation$$anonfun$clone$2.class
com.wordnik.swagger.core.Documentation$$anonfun$setApis$1.class
com.wordnik.swagger.core.Documentation$$anonfun$setSchemas$1.class
com.wordnik.swagger.core.Documentation.class
com.wordnik.swagger.core.DocumentationAllowableListValues.class
com.wordnik.swagger.core.DocumentationAllowableRangeValues.class
com.wordnik.swagger.core.DocumentationAllowableValues.class
com.wordnik.swagger.core.DocumentationEndPoint$$anonfun$clone$3.class
com.wordnik.swagger.core.DocumentationEndPoint$$anonfun$setOperations$1.class
com.wordnik.swagger.core.DocumentationEndPoint.class
com.wordnik.swagger.core.DocumentationError.class
com.wordnik.swagger.core.DocumentationObject$$anonfun$clone$7.class
com.wordnik.swagger.core.DocumentationObject$$anonfun$com$wordnik$swagger$core$DocumentationObject$$setSchemaTypeDef$1.class
com.wordnik.swagger.core.DocumentationObject$$anonfun$setFields$1.class
com.wordnik.swagger.core.DocumentationObject$$anonfun$toDocumentationSchema$1.class
com.wordnik.swagger.core.DocumentationObject.class
com.wordnik.swagger.core.DocumentationOperation$$anonfun$clone$4.class
com.wordnik.swagger.core.DocumentationOperation$$anonfun$clone$5.class
com.wordnik.swagger.core.DocumentationOperation$$anonfun$cloneExternal$1.class
com.wordnik.swagger.core.DocumentationOperation$$anonfun$setErrorResponses$1.class
com.wordnik.swagger.core.DocumentationOperation$$anonfun$setParameters$1.class
com.wordnik.swagger.core.DocumentationOperation$$anonfun$setTags$1.class
com.wordnik.swagger.core.DocumentationOperation.class
com.wordnik.swagger.core.DocumentationParameter.class
com.wordnik.swagger.core.DocumentationResponse$$anonfun$clone$6.class
com.wordnik.swagger.core.DocumentationResponse$$anonfun$setErrorResponses$2.class
com.wordnik.swagger.core.DocumentationResponse.class
com.wordnik.swagger.core.DocumentationSchema.class
com.wordnik.swagger.core.FineGrainedApiAuthorizationFilter.class
com.wordnik.swagger.core.Help$class.class
com.wordnik.swagger.core.Help.class
com.wordnik.swagger.core.HelpApi$$anonfun$filterDocs$1$$anonfun$apply$1.class
com.wordnik.swagger.core.HelpApi$$anonfun$filterDocs$1$$anonfun$apply$2.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
maven-plugin-tools-api-2.0.jar
/org.apache.maven/maven-plugin-tools-api/2.0
查看maven-plugin-tools-api所有版本文件
maven-bundle-plugin-${felix-version}.jar
/org.apache.felix/maven-bundle-plugin/${felix-version}
查看maven-bundle-plugin所有版本文件
|