Marcin Grzejszczak
33a7b476eb
Fixed the build? :|
2019-10-07 15:36:25 +02:00
Marcin Grzejszczak
2a40e5fb60
Fixed the build
2019-10-07 15:03:57 +02:00
Marcin Grzejszczak
ed72a88229
Fixed gradle setup
2019-10-04 15:45:41 +02:00
Marcin Grzejszczak
5609450bf2
Fixed the broken build
2019-10-04 13:47:33 +02:00
Marcin Grzejszczak
ebefa5a07d
Fixed the broken build
2019-10-04 10:51:15 +02:00
Marcin Grzejszczak
8d503ae3e1
Fixed the broken build
2019-10-04 10:05:59 +02:00
buildmaster
2e3b77c3db
Going back to snapshots
2019-10-03 20:48:30 +00:00
buildmaster
90c2d88b81
Update SNAPSHOT to 2.2.0.M3
2019-10-03 20:40:02 +00:00
Spencer Gibb
4987007586
removes snapshots from guides and samples
...
See gh-1239
2019-10-03 16:20:14 -04:00
Marcin Grzejszczak
cf9ea03df3
Merge branch '2.1.x'
2019-09-26 15:09:53 +02:00
Marcin Grzejszczak
0a67fcbab3
Additional stub resetting, updated wiremock listener conditions
...
fixes gh-1027
2019-09-26 14:14:34 +02:00
Marcin Grzejszczak
a2afe6a09b
Merge branch '2.1.x'
2019-09-26 12:26:54 +02:00
Marcin Grzejszczak
84e259fe13
Updated docs with the new plugins api for Gradle
...
fixes gh-1217
2019-09-26 12:23:03 +02:00
Marcin Grzejszczak
48ecf30f65
Updated docs with the new plugins api for Gradle
...
fixes gh-1217
2019-09-26 12:18:58 +02:00
buildmaster
de94a14a9a
Bumping versions to 2.1.4.BUILD-SNAPSHOT after release
2019-09-10 18:47:36 +00:00
buildmaster
882cee887d
Going back to snapshots
2019-09-10 18:47:35 +00:00
buildmaster
4750b4e60e
Update SNAPSHOT to 2.1.3.RELEASE
2019-09-10 18:38:17 +00:00
Marcin Grzejszczak
edf463d715
Fixed the samples
2019-08-28 16:05:52 +02:00
Marcin Grzejszczak
2098e81ece
Removed a handful of samples
2019-08-28 15:13:06 +02:00
Marcin Grzejszczak
d98627a5a4
Fixed invalid API call in Gradle for Kotlin
2019-08-19 11:15:44 +02:00
buildmaster
6b5d4860b9
Going back to snapshots
2019-08-14 16:21:05 +00:00
buildmaster
16902f4338
Update SNAPSHOT to 2.2.0.M2
2019-08-14 16:07:47 +00:00
Tim Ysewyn
4ae10f5d41
Updated kotlin samples to use gradle.properties
2019-08-14 15:34:37 +02:00
Marcin Grzejszczak
3c4772bb6f
Fixed the Jotlin sample with the Gradle API
2019-08-14 12:19:53 +02:00
Tim Ysewyn
81df1a53a1
Fixed flakey test with fixed stub runner port
2019-08-13 18:55:55 +02:00
Tim Ysewyn
ed83b824bb
Some minor changes based on feedback
2019-08-13 15:01:38 +02:00
Tim Ysewyn
c5d7936a7c
Updated docs
2019-08-13 14:34:06 +02:00
Tim Ysewyn
5ae10f246c
Merge branch 'master' into feature/kotlin-contract-support
2019-08-13 10:03:57 +02:00
Tim Ysewyn
2a116ec652
Refactored functions to vals for a more idiomatic experience
2019-08-13 10:00:03 +02:00
Marcin Grzejszczak
aa48f4ce55
Fixed the build
2019-08-12 16:57:05 +02:00
Marcin Grzejszczak
cd946fe01c
Fixed the build
2019-08-12 16:02:36 +02:00
Marcin Grzejszczak
706044bfe5
Added support for writing contracts in Java
...
fixes gh-1161
2019-08-12 13:40:58 +02:00
Tim Ysewyn
4dc32e848c
Reworked DSL for multipart
2019-08-11 01:10:35 +02:00
Tim Ysewyn
9954efdf28
Made DSL less error prone
2019-08-10 17:51:13 +02:00
Tim Ysewyn
cb1a836c17
Added support for referencing the request
2019-08-10 17:00:27 +02:00
Tim Ysewyn
232634090b
Reworked DSL for cookies
2019-08-09 23:42:58 +02:00
Tim Ysewyn
c6b0d1f6eb
Reworked DSL for headers
2019-08-09 23:35:00 +02:00
Tim Ysewyn
5c6cd9fa0c
Refactored internals
2019-08-09 17:38:39 +02:00
Tim Ysewyn
55e81a1f43
Fix sample
2019-08-08 21:50:04 +02:00
Tim Ysewyn
4603b54428
Added Kotlin samples
2019-08-08 14:30:58 +02:00
Marcin Grzejszczak
48cdd556f7
Updated the docs for the stubs protocol
2019-08-07 21:38:14 +02:00
Marcin Grzejszczak
a7b62bb073
Boot version to 2.2.0.BUILD-SNAPSHOT
2019-08-06 17:25:56 +02:00
Marcin Grzejszczak
2be3d0ab86
Added the option "inProgress" to the contract
...
without this change we can't have a contract that will generate a stub but not a test. Of course that's for a reason since it's overriding the very essence of contract test.
with this change we assume that the users know what they're doing and that they will use this flag rarerly. Cause it means that you can have a false positive.
related to gh-881
2019-08-06 15:39:32 +02:00
Marcin Grzejszczak
dbb1af8d98
Generate stubs at runtime ( #1152 )
...
* Generate stubs at runtime
without this change the producer side must publish the stubs for the consumer side to use them
with this change the consumer can toggle a switch so that the stubs get generated at runtime. This might of course lead to false positivies but we assume that the users know what they're doing
fixes gh-881
2019-08-05 10:44:35 +02:00
Marcin Grzejszczak
ce4140a9ff
Bumped boot to 2.2.0.M4
2019-07-09 10:10:37 +02:00
buildmaster
1d56bdd1d7
Going back to snapshots
2019-07-03 20:38:29 +00:00
buildmaster
880c7bdb54
Update SNAPSHOT to 2.2.0.M1
2019-07-03 20:31:51 +00:00
Marcin Grzejszczak
b48dd4905f
Upgraded Rest Assured to 4.0.0; fixes gh-1122
2019-07-02 14:50:20 +02:00
Marcin Grzejszczak
783a7a67bf
Upgraded Gradle to 5.5; fixes gh-1124
2019-07-01 13:56:25 +02:00
buildmaster
c9af98eccd
Bumping versions to 2.1.3.BUILD-SNAPSHOT after release
2019-06-21 11:25:33 +00:00