| 组织ID: |
be.fluid-it.tools.swagger |
| 项目ID: |
swagger-ng-module-codegen |
| 版本: |
0.1-3 |
| 最后修改时间: |
2019-11-01 09:41:41 |
| 包类型: |
jar |
| 标题: |
swagger-ng-module-codegen |
| 描述: |
Swagger cartridge for generating an AOT ready Angular2 module |
| 相关URL: |
https://github.com/rvs-fluid-it/swagger-ng-module-codegen |
| 大小: |
22.17KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>be.fluid-it.tools.swagger</groupId>
<artifactId>swagger-ng-module-codegen</artifactId>
<version>0.1-3</version>
</dependency>
|
| Gradle引入代码: |
be.fluid-it.tools.swagger:swagger-ng-module-codegen:0.1-3
|
| 下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>be.fluid-it.tools.swagger</groupId>
<artifactId>swagger-ng-module-codegen</artifactId>
<version>0.1-3</version>
<packaging>jar</packaging>
<name>swagger-ng-module-codegen</name>
<description>Swagger cartridge for generating an AOT ready Angular2 module</description>
<url>https://github.com/rvs-fluid-it/swagger-ng-module-codegen</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Koen Roevens</name>
<email>koen.roevens@gmail.com</email>
<organization>Fluid IT</organization>
<organizationUrl>http://www.fluid-it.be</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:rvs-fluid-it/swagger-ng-module-codegen.git</connection>
<developerConnection>scm:git:git@github.com:rvs-fluid-it/swagger-ng-module-codegen.git</developerConnection>
<url>git@github.com:rvs-fluid-it/swagger-ng-module-codegen.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<swagger.codegen.version>2.2.1</swagger.codegen.version>
</properties>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>sonatype-oss-staging</id>
<name>Sonatype OSS Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<uniqueVersion>true</uniqueVersion>
<id>sonatype-oss-snapshots</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen</artifactId>
<version>${swagger.codegen.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>integration-tests</id>
<activation>
<property>
<name>!skipITs</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<id>it-install</id>
<goals>
<goal>install</goal>
</goals>
</execution>
<execution>
<id>it-run</id>
<goals>
<goal>run</goal>
</goals>
<configuration>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>test</goal>
</goals>
<properties>
<it.project.version>${project.version}</it.project.version>
</properties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>release</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</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.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-oss-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
be.fluid_it.tools.swagger.codegen.EnrichedCodegenOperation.class
be.fluid_it.tools.swagger.codegen.HttpMethodAware.class
be.fluid_it.tools.swagger.codegen.NgModuleCodegen.class
be.fluid_it.tools.swagger.codegen.WrapperAware.class
be.fluid_it.tools.swagger.codegen.WrapperUtil$NameTypeTuple.class
be.fluid_it.tools.swagger.codegen.WrapperUtil.class
templates/api.mustache
templates/apis.mustache
templates/classType.mustache
templates/configuration.mustache
templates/dist.package.mustache
templates/licenseInfo.mustache
templates/model.mustache
templates/models.mustache
templates/package.mustache
templates/rollup.config.mustache
templates/root.index.mustache
templates/src.index.mustache
templates/tsconfig.mustache
templates/variables.mustache
META-INF/maven/be.fluid-it.tools.swagger/swagger-ng-module-codegen/pom.xml
META-INF/maven/be.fluid-it.tools.swagger/swagger-ng-module-codegen/pom.properties
|
| 依赖Jar: |
swagger-codegen-${swagger.codegen.version}.jar
/io.swagger/swagger-codegen/${swagger.codegen.version}
查看swagger-codegen所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|