diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/ClientOptInput.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/ClientOptInput.java
index 540565834637..c1d21f480355 100644
--- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/ClientOptInput.java
+++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/ClientOptInput.java
@@ -1,19 +1,3 @@
-/**
- * Copyright 2015 Reverb, Inc.
- *
- * Licensed 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.
- */
-
package io.swagger.codegen;
import io.swagger.codegen.ClientOpts;
diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/PhpClientCodegen.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/PhpClientCodegen.java
index b82419c450f4..340e58ab106f 100644
--- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/PhpClientCodegen.java
+++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/PhpClientCodegen.java
@@ -8,7 +8,7 @@ import java.util.*;
import java.io.File;
public class PhpClientCodegen extends DefaultCodegen implements CodegenConfig {
- protected String invokerPackage = "com.wordnik.client";
+ protected String invokerPackage = "io.swagger.client";
protected String groupId = "io.swagger";
protected String artifactId = "swagger-client";
protected String artifactVersion = "1.0.0";
diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/ScalatraServerCodegen.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/ScalatraServerCodegen.java
index aadbf9a72314..7758d9a19e8d 100644
--- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/ScalatraServerCodegen.java
+++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/ScalatraServerCodegen.java
@@ -8,7 +8,7 @@ import java.util.*;
import java.io.File;
public class ScalatraServerCodegen extends DefaultCodegen implements CodegenConfig {
- protected String invokerPackage = "com.wordnik.client";
+ protected String invokerPackage = "io.swagger.client";
protected String groupId = "io.swagger";
protected String artifactId = "swagger-client";
protected String artifactVersion = "1.0.0";
diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticDocCodegen.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticDocCodegen.java
index b751b62147f3..3d1a8f6b62c8 100644
--- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticDocCodegen.java
+++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticDocCodegen.java
@@ -7,7 +7,7 @@ import java.util.*;
import java.io.File;
public class StaticDocCodegen extends DefaultCodegen implements CodegenConfig {
- protected String invokerPackage = "com.wordnik.client";
+ protected String invokerPackage = "io.swagger.client";
protected String groupId = "io.swagger";
protected String artifactId = "swagger-client";
protected String artifactVersion = "1.0.0";
diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtmlGenerator.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtmlGenerator.java
index 96d004fe5e17..6a1c530b837e 100644
--- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtmlGenerator.java
+++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtmlGenerator.java
@@ -10,7 +10,7 @@ import java.io.File;
public class StaticHtmlGenerator extends DefaultCodegen implements CodegenConfig {
private static final String ALL_OPERATIONS = "";
- protected String invokerPackage = "com.wordnik.client";
+ protected String invokerPackage = "io.swagger.client";
protected String groupId = "io.swagger";
protected String artifactId = "swagger-client";
protected String artifactVersion = "1.0.0";
diff --git a/modules/swagger-codegen/src/main/resources/Java/pom.mustache b/modules/swagger-codegen/src/main/resources/Java/pom.mustache
index df01c6ba14d9..592edeec0518 100644
--- a/modules/swagger-codegen/src/main/resources/Java/pom.mustache
+++ b/modules/swagger-codegen/src/main/resources/Java/pom.mustache
@@ -7,9 +7,9 @@
{{artifactId}}
{{artifactVersion}}
- scm:git:git@github.com:wordnik/swagger-mustache.git
- scm:git:git@github.com:wordnik/swagger-codegen.git
- https://github.com/wordnik/swagger-codegen
+ scm:git:git@github.com:swagger-api/swagger-mustache.git
+ scm:git:git@github.com:swagger-api/swagger-codegen.git
+ https://github.com/swagger-api/swagger-codegen
2.2.0
diff --git a/modules/swagger-codegen/src/main/resources/JavaJaxRS/README.mustache b/modules/swagger-codegen/src/main/resources/JavaJaxRS/README.mustache
index f8a560b776f5..3ffa01fb2571 100644
--- a/modules/swagger-codegen/src/main/resources/JavaJaxRS/README.mustache
+++ b/modules/swagger-codegen/src/main/resources/JavaJaxRS/README.mustache
@@ -1,10 +1,10 @@
# Swagger generated server
## Overview
-This server was generated by the [swagger-codegen](https://github.com/wordnik/swagger-codegen) project. By using the
-[swagger-spec](https://github.com/wordnik/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
+This server was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the
+[swagger-spec](https://github.com/swagger-api/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
is an example of building a swagger-enabled scalatra server.
This example uses the [scalatra](http://scalatra.org/) framework. To see how to make this your own, look here:
-[README](https://github.com/wordnik/swagger-codegen/tree/master/samples/server-generator/scalatra)
\ No newline at end of file
+[README](https://github.com/swagger-api/swagger-codegen/tree/master/samples/server-generator/scalatra)
\ No newline at end of file
diff --git a/modules/swagger-codegen/src/main/resources/JavaSpringMVC/pom.mustache b/modules/swagger-codegen/src/main/resources/JavaSpringMVC/pom.mustache
index fc6a7e557383..3b068adffdf3 100644
--- a/modules/swagger-codegen/src/main/resources/JavaSpringMVC/pom.mustache
+++ b/modules/swagger-codegen/src/main/resources/JavaSpringMVC/pom.mustache
@@ -110,7 +110,7 @@
- com.wordnik
+ io.swagger
swagger-jersey-jaxrs
${swagger-core-version}
diff --git a/modules/swagger-codegen/src/main/resources/akka-scala/pom.mustache b/modules/swagger-codegen/src/main/resources/akka-scala/pom.mustache
index f264f38279e6..eb24f77c0720 100644
--- a/modules/swagger-codegen/src/main/resources/akka-scala/pom.mustache
+++ b/modules/swagger-codegen/src/main/resources/akka-scala/pom.mustache
@@ -162,7 +162,7 @@
${scala-version}
- com.wordnik
+ io.swagger
swagger-core
${swagger-core-version}
diff --git a/modules/swagger-codegen/src/main/resources/android-java/pom.mustache b/modules/swagger-codegen/src/main/resources/android-java/pom.mustache
index 9dfa63c25c8f..05388db4e117 100644
--- a/modules/swagger-codegen/src/main/resources/android-java/pom.mustache
+++ b/modules/swagger-codegen/src/main/resources/android-java/pom.mustache
@@ -7,9 +7,9 @@
{{artifactId}}
{{artifactVersion}}
- scm:git:git@github.com:wordnik/swagger-mustache.git
- scm:git:git@github.com:wordnik/swagger-codegen.git
- https://github.com/wordnik/swagger-codegen
+ scm:git:git@github.com:swagger-api/swagger-mustache.git
+ scm:git:git@github.com:swagger-api/swagger-codegen.git
+ https://github.com/swagger-api/swagger-codegen
2.2.0
diff --git a/modules/swagger-codegen/src/main/resources/codegen/pom.mustache b/modules/swagger-codegen/src/main/resources/codegen/pom.mustache
index f827a2f56b6c..ad480b9b331b 100644
--- a/modules/swagger-codegen/src/main/resources/codegen/pom.mustache
+++ b/modules/swagger-codegen/src/main/resources/codegen/pom.mustache
@@ -88,7 +88,7 @@
- com.wordnik
+ io.swagger
swagger-codegen
${swagger-codegen-version}
provided
diff --git a/modules/swagger-codegen/src/main/resources/nodejs/README.mustache b/modules/swagger-codegen/src/main/resources/nodejs/README.mustache
index a8da1d0a9ea3..edeea0005c06 100644
--- a/modules/swagger-codegen/src/main/resources/nodejs/README.mustache
+++ b/modules/swagger-codegen/src/main/resources/nodejs/README.mustache
@@ -5,7 +5,7 @@ This server was generated by the [swagger-codegen](https://github.com/swagger-ap
This example uses the [expressjs](http://expressjs.com/) framework. To see how to make this your own, look here:
-[README](https://github.com/wordnik/swagger-codegen/README.md)
+[README](https://github.com/swagger-api/swagger-codegen/README.md)
### Running the server
To run the server, follow these simple steps:
diff --git a/modules/swagger-codegen/src/main/resources/retrofit/pom.mustache b/modules/swagger-codegen/src/main/resources/retrofit/pom.mustache
index bf3a40c3c25c..7d999db86caf 100644
--- a/modules/swagger-codegen/src/main/resources/retrofit/pom.mustache
+++ b/modules/swagger-codegen/src/main/resources/retrofit/pom.mustache
@@ -7,9 +7,9 @@
{{artifactId}}
{{artifactVersion}}
- scm:git:git@github.com:wordnik/swagger-mustache.git
- scm:git:git@github.com:wordnik/swagger-codegen.git
- https://github.com/wordnik/swagger-codegen
+ scm:git:git@github.com:swagger-api/swagger-mustache.git
+ scm:git:git@github.com:swagger-api/swagger-codegen.git
+ https://github.com/swagger-api/swagger-codegen
2.2.0
diff --git a/modules/swagger-codegen/src/main/resources/ruby/swagger_client.gemspec.mustache b/modules/swagger-codegen/src/main/resources/ruby/swagger_client.gemspec.mustache
index 9f84d88d4e12..8ae4bfa1a492 100644
--- a/modules/swagger-codegen/src/main/resources/ruby/swagger_client.gemspec.mustache
+++ b/modules/swagger-codegen/src/main/resources/ruby/swagger_client.gemspec.mustache
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
s.version = {{moduleName}}::Swagger::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Zeke Sikelianos", "Tony Tam"]
- s.email = ["zeke@wordnik.com", "tony@wordnik.com"]
- s.homepage = "http://developer.wordnik.com"
+ s.email = ["zeke@wordnik.com", "fehguy@gmail.com"]
+ s.homepage = "http://swagger.io"
s.summary = %q{A ruby wrapper for the swagger APIs}
s.description = %q{This gem maps to a swagger API}
s.license = "Apache-2.0"
diff --git a/modules/swagger-codegen/src/main/resources/scalatra/README.mustache b/modules/swagger-codegen/src/main/resources/scalatra/README.mustache
index f8a560b776f5..3ffa01fb2571 100644
--- a/modules/swagger-codegen/src/main/resources/scalatra/README.mustache
+++ b/modules/swagger-codegen/src/main/resources/scalatra/README.mustache
@@ -1,10 +1,10 @@
# Swagger generated server
## Overview
-This server was generated by the [swagger-codegen](https://github.com/wordnik/swagger-codegen) project. By using the
-[swagger-spec](https://github.com/wordnik/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
+This server was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the
+[swagger-spec](https://github.com/swagger-api/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
is an example of building a swagger-enabled scalatra server.
This example uses the [scalatra](http://scalatra.org/) framework. To see how to make this your own, look here:
-[README](https://github.com/wordnik/swagger-codegen/tree/master/samples/server-generator/scalatra)
\ No newline at end of file
+[README](https://github.com/swagger-api/swagger-codegen/tree/master/samples/server-generator/scalatra)
\ No newline at end of file
diff --git a/modules/swagger-codegen/src/main/resources/scalatra/build.sbt b/modules/swagger-codegen/src/main/resources/scalatra/build.sbt
index afe84c2c7f09..00575312d853 100644
--- a/modules/swagger-codegen/src/main/resources/scalatra/build.sbt
+++ b/modules/swagger-codegen/src/main/resources/scalatra/build.sbt
@@ -8,7 +8,7 @@ assemblySettings
scalariformSettings
-organization := "com.wordnik"
+organization := "io.swagger"
seq(webSettings :_*)
diff --git a/modules/swagger-codegen/src/main/resources/swagger-static/pom.xml b/modules/swagger-codegen/src/main/resources/swagger-static/pom.xml
index eb3bed8e7b9e..9c8823238160 100644
--- a/modules/swagger-codegen/src/main/resources/swagger-static/pom.xml
+++ b/modules/swagger-codegen/src/main/resources/swagger-static/pom.xml
@@ -1,10 +1,10 @@
4.0.0
- com.wordnik
- wordnik-swagger-demo
+ io.swagger
+ swagger-demo
jar
- wordnik-swagger-demo
+ swagger-demo
1.0.0-SNAPSHOT
2.2.0
diff --git a/modules/swagger-codegen/src/main/resources/validator/index.mustache b/modules/swagger-codegen/src/main/resources/validator/index.mustache
index 24ac8de38ef5..2f4c45b32dc0 100644
--- a/modules/swagger-codegen/src/main/resources/validator/index.mustache
+++ b/modules/swagger-codegen/src/main/resources/validator/index.mustache
@@ -70,7 +70,7 @@
clear: none;
float: left;
padding: 20px 0 20px 60px;
- background: transparent url('http://swagger.wordnik.com/images/logo.png') no-repeat left center;
+ background: transparent url('http://swagger.io/images/logo.png') no-repeat left center;
color: white;
text-decoration: none;
}
@@ -207,13 +207,13 @@
diff --git a/samples/client/petstore/android-java/pom.xml b/samples/client/petstore/android-java/pom.xml
index df929fe52863..639000ecc6d9 100644
--- a/samples/client/petstore/android-java/pom.xml
+++ b/samples/client/petstore/android-java/pom.xml
@@ -7,9 +7,9 @@
swagger-android-client
1.0.0
- scm:git:git@github.com:wordnik/swagger-mustache.git
- scm:git:git@github.com:wordnik/swagger-codegen.git
- https://github.com/wordnik/swagger-codegen
+ scm:git:git@github.com:swagger-api/swagger-mustache.git
+ scm:git:git@github.com:swagger-api/swagger-codegen.git
+ https://github.com/swagger-api/swagger-codegen
2.2.0
diff --git a/samples/client/petstore/flash/FlashPetstoreCodegen.scala b/samples/client/petstore/flash/FlashPetstoreCodegen.scala
index 0198674a2eb1..e1f996b9487e 100644
--- a/samples/client/petstore/flash/FlashPetstoreCodegen.scala
+++ b/samples/client/petstore/flash/FlashPetstoreCodegen.scala
@@ -19,7 +19,7 @@ import com.wordnik.swagger.codegen.BasicFlashCodegen
object FlashPetstoreCodegen extends BasicFlashCodegen {
def main(args: Array[String]) = generateClient(args)
- override def packageName = "com.wordnik.client"
+ override def packageName = "io.swagger.client"
override def destinationRoot = "samples/client/petstore/flash"
diff --git a/samples/client/petstore/java/pom.xml b/samples/client/petstore/java/pom.xml
index 7b134c852227..058733e08fcd 100644
--- a/samples/client/petstore/java/pom.xml
+++ b/samples/client/petstore/java/pom.xml
@@ -7,9 +7,9 @@
swagger-java-client
1.0.0
- scm:git:git@github.com:wordnik/swagger-mustache.git
- scm:git:git@github.com:wordnik/swagger-codegen.git
- https://github.com/wordnik/swagger-codegen
+ scm:git:git@github.com:swagger-api/swagger-mustache.git
+ scm:git:git@github.com:swagger-api/swagger-codegen.git
+ https://github.com/swagger-api/swagger-codegen
2.2.0
diff --git a/samples/client/petstore/retrofit/pom.xml b/samples/client/petstore/retrofit/pom.xml
index 7177c69dcc9c..45463b449bd1 100644
--- a/samples/client/petstore/retrofit/pom.xml
+++ b/samples/client/petstore/retrofit/pom.xml
@@ -7,9 +7,9 @@
swagger-java-client
1.0.0
- scm:git:git@github.com:wordnik/swagger-mustache.git
- scm:git:git@github.com:wordnik/swagger-codegen.git
- https://github.com/wordnik/swagger-codegen
+ scm:git:git@github.com:swagger-api/swagger-mustache.git
+ scm:git:git@github.com:swagger-api/swagger-codegen.git
+ https://github.com/swagger-api/swagger-codegen
2.2.0
diff --git a/samples/client/petstore/ruby/swagger_client.gemspec b/samples/client/petstore/ruby/swagger_client.gemspec
index 6ec2484e05c8..c0d507b3c5bc 100644
--- a/samples/client/petstore/ruby/swagger_client.gemspec
+++ b/samples/client/petstore/ruby/swagger_client.gemspec
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
s.version = SwaggerClient::Swagger::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Zeke Sikelianos", "Tony Tam"]
- s.email = ["zeke@wordnik.com", "tony@wordnik.com"]
- s.homepage = "http://developer.wordnik.com"
+ s.email = ["zeke@wordnik.com", "fehguy@gmail.com"]
+ s.homepage = "http://swagger.io"
s.summary = %q{A ruby wrapper for the swagger APIs}
s.description = %q{This gem maps to a swagger API}
s.license = "Apache-2.0"
diff --git a/samples/html/index.html b/samples/html/index.html
index caaa4152984b..6dd837bc3ee4 100644
--- a/samples/html/index.html
+++ b/samples/html/index.html
@@ -332,7 +332,7 @@
"complete" : true,
"status" : "aeiou",
"quantity" : 123,
- "shipDate" : "2015-06-07T06:51:26.728+0000"
+ "shipDate" : "2015-06-07T07:07:24.098+0000"
}
Example data
@@ -341,7 +341,7 @@
<id>123456</id>
<petId>123456</petId>
<quantity>0</quantity>
- <shipDate>2015-06-06T23:51:26.731Z</shipDate>
+ <shipDate>2015-06-07T00:07:24.100Z</shipDate>
<status>string</status>
<complete>true</complete>
</Order>
@@ -375,7 +375,7 @@
"complete" : true,
"status" : "aeiou",
"quantity" : 123,
- "shipDate" : "2015-06-07T06:51:26.732+0000"
+ "shipDate" : "2015-06-07T07:07:24.102+0000"
}
Example data
@@ -384,7 +384,7 @@
<id>123456</id>
<petId>123456</petId>
<quantity>0</quantity>
- <shipDate>2015-06-06T23:51:26.732Z</shipDate>
+ <shipDate>2015-06-07T00:07:24.102Z</shipDate>
<status>string</status>
<complete>true</complete>
</Order>
diff --git a/samples/server/petstore/jaxrs/README.md b/samples/server/petstore/jaxrs/README.md
index f8a560b776f5..3ffa01fb2571 100644
--- a/samples/server/petstore/jaxrs/README.md
+++ b/samples/server/petstore/jaxrs/README.md
@@ -1,10 +1,10 @@
# Swagger generated server
## Overview
-This server was generated by the [swagger-codegen](https://github.com/wordnik/swagger-codegen) project. By using the
-[swagger-spec](https://github.com/wordnik/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
+This server was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the
+[swagger-spec](https://github.com/swagger-api/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
is an example of building a swagger-enabled scalatra server.
This example uses the [scalatra](http://scalatra.org/) framework. To see how to make this your own, look here:
-[README](https://github.com/wordnik/swagger-codegen/tree/master/samples/server-generator/scalatra)
\ No newline at end of file
+[README](https://github.com/swagger-api/swagger-codegen/tree/master/samples/server-generator/scalatra)
\ No newline at end of file
diff --git a/samples/server/petstore/spring-mvc/pom.xml b/samples/server/petstore/spring-mvc/pom.xml
index 71cdd259658f..30cd3a414845 100644
--- a/samples/server/petstore/spring-mvc/pom.xml
+++ b/samples/server/petstore/spring-mvc/pom.xml
@@ -110,7 +110,7 @@
- com.wordnik
+ io.swagger
swagger-jersey-jaxrs
${swagger-core-version}