@@ -45,7 +45,8 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
45
45
file(" build/distributions/hello-world-1.0-javadoc.jar" ). exists()
46
46
file(" build/distributions/hello-world-1.0-sources.jar" ). exists()
47
47
file(" build/distributions/hello-world-1.0.pom" ). exists()
48
- assertXmlEquals(file(" build/distributions/hello-world-1.0.pom" ). text, """
48
+ assertXmlEquals(
49
+ file(" build/distributions/hello-world-1.0.pom" ). text, """
49
50
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
50
51
<!-- This module was also published with a richer model, Gradle metadata, -->
51
52
<!-- which should be used instead. Do not delete the following line which -->
@@ -130,7 +131,8 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
130
131
file(" build/distributions/hello-world-1.0-javadoc.jar" ). exists()
131
132
file(" build/distributions/hello-world-1.0-sources.jar" ). exists()
132
133
file(" build/distributions/hello-world-1.0.pom" ). exists()
133
- assertXmlEquals(file(" build/distributions/hello-world-1.0.pom" ). text, """
134
+ assertXmlEquals(
135
+ file(" build/distributions/hello-world-1.0.pom" ). text, """
134
136
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
135
137
<modelVersion>4.0.0</modelVersion>
136
138
<groupId>org.acme</groupId>
@@ -219,7 +221,8 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
219
221
file(" build/distributions/hello-world-1.0-javadoc.jar" ). exists()
220
222
file(" build/distributions/hello-world-1.0-sources.jar" ). exists()
221
223
file(" build/distributions/hello-world-1.0.pom" ). exists()
222
- assertXmlEquals(file(" build/distributions/hello-world-1.0.pom" ). text, """
224
+ assertXmlEquals(
225
+ file(" build/distributions/hello-world-1.0.pom" ). text, """
223
226
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
224
227
<modelVersion>4.0.0</modelVersion>
225
228
<groupId>org.acme</groupId>
@@ -312,7 +315,8 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
312
315
file(" build/distributions/hello-world-plugin-1.0-javadoc.jar" ). exists()
313
316
file(" build/distributions/hello-world-plugin-1.0-sources.jar" ). exists()
314
317
file(" build/distributions/hello-world-plugin-1.0.pom" ). exists()
315
- assertXmlEquals(file(" build/distributions/hello-world-plugin-1.0.pom" ). text, """
318
+ assertXmlEquals(
319
+ file(" build/distributions/hello-world-plugin-1.0.pom" ). text, """
316
320
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
317
321
<!-- This module was also published with a richer model, Gradle metadata, -->
318
322
<!-- which should be used instead. Do not delete the following line which -->
@@ -389,7 +393,8 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
389
393
then :
390
394
result. task(" :generatePom" ). outcome == TaskOutcome . SUCCESS
391
395
file(" build/distributions/hello-world-plugin-2.0.pom" ). exists()
392
- assertXmlEquals(file(" build/distributions/hello-world-plugin-2.0.pom" ). text, """
396
+ assertXmlEquals(
397
+ file(" build/distributions/hello-world-plugin-2.0.pom" ). text, """
393
398
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
394
399
<!-- This module was also published with a richer model, Gradle metadata, -->
395
400
<!-- which should be used instead. Do not delete the following line which -->
@@ -439,15 +444,15 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
439
444
// scm info only added for internal builds
440
445
internalBuild()
441
446
buildFile << """
442
- buildParams.setGitOrigin("https://some-repo.com/repo.git")
447
+ buildParams.setGitOrigin(project.providers.provider(() -> "https://some-repo.com/repo.git") )
443
448
apply plugin:'elasticsearch.java'
444
449
apply plugin:'elasticsearch.publish'
445
450
446
451
version = "1.0"
447
452
group = 'org.acme'
448
453
description = "just a test project"
449
454
450
- ext.projectLicenses.set(['The Apache Software License, Version 2.0': 'http://www.apache.org/licenses/LICENSE-2.0'])
455
+ ext.projectLicenses.set(['The Apache Software License, Version 2.0': project.providers.provider(() -> 'http://www.apache.org/licenses/LICENSE-2.0') ])
451
456
"""
452
457
453
458
when :
@@ -456,7 +461,8 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
456
461
then :
457
462
result. task(" :generatePom" ). outcome == TaskOutcome . SUCCESS
458
463
file(" build/distributions/hello-world-1.0.pom" ). exists()
459
- assertXmlEquals(file(" build/distributions/hello-world-1.0.pom" ). text, """
464
+ assertXmlEquals(
465
+ file(" build/distributions/hello-world-1.0.pom" ). text, """
460
466
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
461
467
<!-- This module was also published with a richer model, Gradle metadata, -->
462
468
<!-- which should be used instead. Do not delete the following line which -->
@@ -493,15 +499,15 @@ class PublishPluginFuncTest extends AbstractGradleFuncTest {
493
499
494
500
private boolean assertXmlEquals (String toTest , String expected ) {
495
501
def diff = DiffBuilder . compare(Input . fromString(expected))
496
- .ignoreWhitespace()
497
- .ignoreComments()
498
- .normalizeWhitespace()
499
- .withTest(Input . fromString(toTest))
500
- .build()
502
+ .ignoreWhitespace()
503
+ .ignoreComments()
504
+ .normalizeWhitespace()
505
+ .withTest(Input . fromString(toTest))
506
+ .build()
501
507
diff. differences. each { difference ->
502
508
println difference
503
509
}
504
- if (diff. differences. size() > 0 ) {
510
+ if (diff. differences. size() > 0 ) {
505
511
println """ given:
506
512
$toTest
507
513
"""
0 commit comments