Skip to content

Commit 09232fa

Browse files
committedAug 15, 2022
rnd config
1 parent 5d54ae2 commit 09232fa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ apply plugin: "net.idlestate.download-dependencies"
2828

2929
group = 'au.com.dius.pactworkshop'
3030
version = '0.0.1'
31-
sourceCompatibility = "16"
32-
targetCompatibility = "16"
31+
sourceCompatibility = "14"
32+
targetCompatibility = "14"
3333

3434
configurations {
3535
compileOnly {

‎src/test/java/au/com/dius/pactworkshop/provider/ProductPactProviderTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
@Provider("ProductService")
3535
//@PactFolder("pacts")
3636
@PactBroker(
37-
host = "localhost",
37+
host = "pactbroker.dev.gazprombank.ru",
3838
port = "8000",
3939
authentication = @PactBrokerAuth(username = "pact_workshop", password = "pact_workshop")
4040
// enablePendingPacts = "true",
41-
// providerTags = "true"
41+
// providerTags = "master"
4242
)
4343
@ExtendWith(SpringExtension.class)
4444
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)

‎src/test/java/au/com/dius/pactworkshop/provider/validateWithOAS.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class validateWithOAS {
1414
public void validateWithOASTest() {
1515

1616
final String API_SPEC_URL = new File("oas/schema.json").getAbsolutePath();
17-
final String BROKER_URL = "http://localhost:8000";
17+
final String BROKER_URL = "http://pactbroker.dev.gazprombank.ru:8000";
1818
final String USERNAME = "pact_workshop";
1919
final String PASSWORD = "pact_workshop";
2020
final String PROVIDER_ID = "ProductService";

0 commit comments

Comments
 (0)
Please sign in to comment.