forked from OpenAPITools/openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* various updates * update pom.xml * update ci config with new location * Change "swagger-codegen" to "openapi-generator" in a comment * fix pom.xml for bash client * minor fix to github ID * fix pom for ios
- Loading branch information
Showing
36 changed files
with
66 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,16 @@ | |
<version>5</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>io.swagger</groupId> | ||
<artifactId>swagger-codegen-project</artifactId> | ||
<groupId>org.openapitools</groupId> | ||
<artifactId>openapi-generator-project</artifactId> | ||
<packaging>pom</packaging> | ||
<name>swagger-codegen-project</name> | ||
<version>2.4.0-SNAPSHOT</version> | ||
<url>https://github.com/swagger-api/swagger-codegen</url> | ||
<name>openapi-generator-project</name> | ||
<version>3.0.0-SNAPSHOT</version> | ||
<url>https://github.com/openapi-tools/openapi-generator</url> | ||
<scm> | ||
<connection>scm:git:[email protected]:swagger-api/swagger-codegen.git</connection> | ||
<developerConnection>scm:git:[email protected]:swagger-api/swagger-codegen.git</developerConnection> | ||
<url>https://github.com/swagger-api/swagger-codegen</url> | ||
<connection>scm:git:[email protected]:openapi-tools/openapi-generator.git</connection> | ||
<developerConnection>scm:git:[email protected]:openapi-tools/openapi-generator.git</developerConnection> | ||
<url>https://github.com/openapi-tools/openapi-generator</url> | ||
</scm> | ||
<developers> | ||
<!-- original author of the project --> | ||
|
@@ -58,14 +58,8 @@ | |
</developers> | ||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/swagger-api/swagger-codegen/issues</url> | ||
<url>https://github.com/openapi-tools/openapi-generator/issues</url> | ||
</issueManagement> | ||
<mailingLists> | ||
<mailingList> | ||
<name>swagger-swaggersocket</name> | ||
<archive>https://groups.google.com/forum/#!forum/swagger-swaggersocket</archive> | ||
</mailingList> | ||
</mailingLists> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
|
@@ -117,7 +111,7 @@ | |
<lineEnding>LF</lineEnding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<!--<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<version>2.17</version> | ||
|
@@ -127,7 +121,7 @@ | |
<phase>validate</phase> | ||
<configuration> | ||
<configLocation>google_checkstyle.xml</configLocation> | ||
<!-- Don't include generated sources a la http://stackoverflow.com/a/30406454 --> | ||
Don't include generated sources a la http://stackoverflow.com/a/30406454 | ||
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> | ||
<encoding>UTF-8</encoding> | ||
<consoleOutput>true</consoleOutput> | ||
|
@@ -146,7 +140,7 @@ | |
<version>6.19</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugin>--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
|
@@ -201,7 +195,7 @@ | |
<mode>development</mode> | ||
<url>${project.url}</url> | ||
<implementation-version>${project.version}</implementation-version> | ||
<package>io.swagger</package> | ||
<package>org.openapi-tools</package> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
|
@@ -544,30 +538,6 @@ | |
<module>samples/client/petstore/scala</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>objc-client</id> | ||
<activation> | ||
<property> | ||
<name>env</name> | ||
<value>objc</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>samples/client/petstore/objc/default/SwaggerClientTests</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>swift-client</id> | ||
<activation> | ||
<property> | ||
<name>env</name> | ||
<value>swift</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>samples/client/petstore/swift/default/SwaggerClientTests</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>java-msf4j-server</id> | ||
<activation> | ||
|
@@ -882,10 +852,10 @@ | |
</profile> | ||
</profiles> | ||
<modules> | ||
<module>modules/swagger-codegen</module> | ||
<module>modules/swagger-codegen-cli</module> | ||
<module>modules/swagger-codegen-maven-plugin</module> | ||
<module>modules/swagger-generator</module> | ||
<module>modules/openapi-generator</module> | ||
<module>modules/openapi-generator-cli</module> | ||
<module>modules/openapi-generator-maven-plugin</module> | ||
<module>modules/openapi-generator-online</module> | ||
</modules> | ||
<reporting> | ||
<outputDirectory>target/site</outputDirectory> | ||
|
@@ -961,7 +931,7 @@ | |
<commons-lang-version>3.4</commons-lang-version> | ||
<slf4j-version>1.7.12</slf4j-version> | ||
<scala-maven-plugin-version>3.2.1</scala-maven-plugin-version> | ||
<jmustache-version>1.12</jmustache-version> | ||
<jmustache-version>1.14</jmustache-version> | ||
<testng-version>6.9.6</testng-version> | ||
<surefire-version>2.19.1</surefire-version> | ||
<jmockit-version>1.25</jmockit-version> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,16 @@ | |
<version>5</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>io.swagger</groupId> | ||
<artifactId>swagger-codegen-project</artifactId> | ||
<groupId>org.openapitools</groupId> | ||
<artifactId>openapi-generator-project</artifactId> | ||
<packaging>pom</packaging> | ||
<name>swagger-codegen-project</name> | ||
<version>2.4.0-SNAPSHOT</version> | ||
<url>https://github.com/swagger-api/swagger-codegen</url> | ||
<name>openapi-generator-project</name> | ||
<version>3.0.0-SNAPSHOT</version> | ||
<url>https://github.com/openapitools/openapi-generator</url> | ||
<scm> | ||
<connection>scm:git:[email protected]:swagger-api/swagger-codegen.git</connection> | ||
<developerConnection>scm:git:[email protected]:swagger-api/swagger-codegen.git</developerConnection> | ||
<url>https://github.com/swagger-api/swagger-codegen</url> | ||
<connection>scm:git:[email protected]:openapitools/openapi-generator.git</connection> | ||
<developerConnection>scm:git:[email protected]:openapitools/openapi-generator.git</developerConnection> | ||
<url>https://github.com/openapitools/openapi-generator</url> | ||
</scm> | ||
<developers> | ||
<!-- original author of the project --> | ||
|
@@ -58,14 +58,8 @@ | |
</developers> | ||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/swagger-api/swagger-codegen/issues</url> | ||
<url>https://github.com/openapitools/openapi-generator/issues</url> | ||
</issueManagement> | ||
<mailingLists> | ||
<mailingList> | ||
<name>swagger-swaggersocket</name> | ||
<archive>https://groups.google.com/forum/#!forum/swagger-swaggersocket</archive> | ||
</mailingList> | ||
</mailingLists> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
|
@@ -201,7 +195,7 @@ | |
<mode>development</mode> | ||
<url>${project.url}</url> | ||
<implementation-version>${project.version}</implementation-version> | ||
<package>io.swagger</package> | ||
<package>org.openapitools</package> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
|
@@ -544,30 +538,6 @@ | |
<module>samples/client/petstore/scala</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>objc-client</id> | ||
<activation> | ||
<property> | ||
<name>env</name> | ||
<value>objc</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>samples/client/petstore/objc/default/SwaggerClientTests</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>swift-client</id> | ||
<activation> | ||
<property> | ||
<name>env</name> | ||
<value>swift</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>samples/client/petstore/swift/default/SwaggerClientTests</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>java-msf4j-server</id> | ||
<activation> | ||
|
@@ -885,15 +855,15 @@ | |
<module>samples/client/petstore/swift/rxswift/SwaggerClientTests</module> | ||
<!-- comment out objc tests as it's timing out | ||
<module>samples/client/petstore/objc/default/SwaggerClientTests</module> | ||
<module>samples/client/petstore/objc/core-data/SwaggerClientTests</module>--> | ||
<module>samples/client/petstore/objc/core-data/SwaggerClientTests</module>--> | ||
</modules> | ||
</profile> | ||
</profiles> | ||
<modules> | ||
<module>modules/swagger-codegen</module> | ||
<module>modules/swagger-codegen-cli</module> | ||
<module>modules/swagger-codegen-maven-plugin</module> | ||
<module>modules/swagger-generator</module> | ||
<module>modules/openapi-generator</module> | ||
<module>modules/openapi-generator-cli</module> | ||
<module>modules/openapi-generator-maven-plugin</module> | ||
<module>modules/openapi-generator-online</module> | ||
</modules> | ||
<reporting> | ||
<outputDirectory>target/site</outputDirectory> | ||
|
@@ -969,7 +939,7 @@ | |
<commons-lang-version>3.4</commons-lang-version> | ||
<slf4j-version>1.7.12</slf4j-version> | ||
<scala-maven-plugin-version>3.2.1</scala-maven-plugin-version> | ||
<jmustache-version>1.12</jmustache-version> | ||
<jmustache-version>1.14</jmustache-version> | ||
<testng-version>6.9.6</testng-version> | ||
<surefire-version>2.19.1</surefire-version> | ||
<jmockit-version>1.25</jmockit-version> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.