Skip to content

Commit bee3e1e

Browse files
committed
Merge branch 'develop_2.0' of github.com:swagger-api/swagger-core into develop_2.0
2 parents b45ccc3 + 2a6ac2c commit bee3e1e

File tree

11 files changed

+11
-10
lines changed

11 files changed

+11
-10
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
sudo: false
12
language: java
23
script: mvn clean verify
34
jdk:

modules/swagger-core/src/test/scala/specFiles/compositionTest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"title": "Swagger Petstore",
77
"termsOfService": "http://helloreverb.com/terms/",
88
"contact": {
9-
"name": "apiteam@wordnik.com"
9+
"name": "apiteam@swagger.io"
1010
},
1111
"license": {
1212
"name": "Apache 2.0",

samples/java-grails2/web-app/WEB-INF/applicationContext.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
3030
<property name="basePath" value="http://localhost:8080/java-grails2/api"/>
3131
<property name="title" value="Petstore sample app"/>
3232
<property name="description" value="This is a app."/>
33-
<property name="contact" value="apiteam@wordnik.com"/>
33+
<property name="contact" value="apiteam@swagger.io"/>
3434
<property name="license" value="Apache 2.0 License"/>
3535
<property name="licenseUrl" value="http://www.apache.org/licenses/LICENSE-2.0.html"/>
3636
<property name="scan" value="true"/>

samples/java-jaxrs-cxf/src/main/resources/applicationContext.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<property name="basePath" value="/api"/>
4646
<property name="title" value="Petstore sample app"/>
4747
<property name="description" value="This is a app."/>
48-
<property name="contact" value="apiteam@wordnik.com"/>
48+
<property name="contact" value="apiteam@swagger.io"/>
4949
<property name="license" value="Apache 2.0 License"/>
5050
<property name="licenseUrl" value="http://www.apache.org/licenses/LICENSE-2.0.html"/>
5151
<!-- <property name="filterClass" value="com.wordnik.swagger.sample.util.ApiAuthorizationFilterImpl"/> -->

samples/java-jaxrs-cxf/src/test/scala/ResourceListingIT.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ResourceListingIT extends FlatSpec with Matchers {
2525
info.getVersion() should be ("1.0.0")
2626
info.getTitle() should be ("Petstore sample app")
2727
info.getContact() should not be (null)
28-
info.getContact().getName() should be ("apiteam@wordnik.com")
28+
info.getContact().getName() should be ("apiteam@swagger.io")
2929
info.getLicense() should not be (null)
3030
info.getLicense().getName() should be ("Apache 2.0 License")
3131
}

samples/java-jaxrs-no-webxml/src/main/java/com/wordnik/swagger/sample/Bootstrap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void init(ServletConfig config) throws ServletException {
2424
"you can use the api key \"special-key\" to test the authorization filters")
2525
.termsOfService("http://helloreverb.com/terms/")
2626
.contact(new Contact()
27-
.email("apiteam@wordnik.com"))
27+
.email("apiteam@swagger.io"))
2828
.license(new License()
2929
.name("Apache 2.0")
3030
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));

samples/java-jaxrs-no-webxml/src/test/scala/ResourceListingIT.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ResourceListingIT extends FlatSpec with Matchers {
2727
info.getVersion() should be ("1.0.0")
2828
info.getTitle() should be ("Petstore sample app")
2929
info.getContact() should not be (null)
30-
info.getContact().getName() should be ("apiteam@wordnik.com")
30+
info.getContact().getName() should be ("apiteam@swagger.io")
3131
info.getLicense() should not be (null)
3232
info.getLicense().getName() should be ("Apache 2.0 License")
3333
}

samples/java-jaxrs/src/main/java/com/wordnik/swagger/sample/Bootstrap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void init(ServletConfig config) throws ServletException {
1919
"you can use the api key \"special-key\" to test the authorization filters")
2020
.termsOfService("http://helloreverb.com/terms/")
2121
.contact(new Contact()
22-
.email("apiteam@wordnik.com"))
22+
.email("apiteam@swagger.io"))
2323
.license(new License()
2424
.name("Apache 2.0")
2525
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));

samples/java-jaxrs/src/test/scala/ResourceListingIT.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ResourceListingIT extends FlatSpec with Matchers {
2727
info.getVersion() should be ("1.0.0")
2828
info.getTitle() should be ("Petstore sample app")
2929
info.getContact() should not be (null)
30-
info.getContact().getName() should be ("apiteam@wordnik.com")
30+
info.getContact().getName() should be ("apiteam@swagger.io")
3131
info.getLicense() should not be (null)
3232
info.getLicense().getName() should be ("Apache 2.0 License")
3333
}

samples/java-jersey-jaxrs/src/main/java/com/wordnik/swagger/sample/Bootstrap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void init(ServletConfig config) throws ServletException {
1919
"you can use the api key \"special-key\" to test the authorization filters")
2020
.termsOfService("http://helloreverb.com/terms/")
2121
.contact(new Contact()
22-
.email("apiteam@wordnik.com"))
22+
.email("apiteam@swagger.io"))
2323
.license(new License()
2424
.name("Apache 2.0")
2525
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));

0 commit comments

Comments
 (0)