Add 'bin/ensure-up-to-date' script and update Shippable CI (#136)

* Create 'bin/ensure-up-to-date' script

* Update shippable config

* Do no longer copy 'CI/pom.xml.shippable' to 'pom.xml'
* Fix paths in CI/pom.xml.shippable

* shippable: remove write to file

* shippable: move order

* Run 'bin/ruby-petstore.sh' to update 'samples/'

* Add Kotlin scripts to the list
This commit is contained in:
Jérémie Bresson
2018-05-24 16:18:35 +02:00
committed by Jim Schubert
parent 9040f49311
commit 00f176ad95
7 changed files with 91 additions and 60 deletions

View File

@@ -35,7 +35,7 @@ data class Order (
* Order Status
* Values: placed,approved,delivered
*/
enum class Status(val value: kotlin.Any){
enum class Status(val value: kotlin.String){
placed("placed"),

View File

@@ -37,7 +37,7 @@ data class Pet (
* pet status in the store
* Values: available,pending,sold
*/
enum class Status(val value: kotlin.Any){
enum class Status(val value: kotlin.String){
available("available"),