Skip to content

Commit aee576a

Browse files
committed
Publishing pipeline updates.
1 parent 09d94ae commit aee576a

File tree

12 files changed

+24
-16
lines changed

12 files changed

+24
-16
lines changed

gradle.properties

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
group = com.github.simy4.xpath
22
version = 2.3.10-SNAPSHOT
33

4-
projectDescription = Convenient utility to build XML models by evaluating XPath expressions
5-
projectUrl = https://github.com/SimY4/xpath-to-xml
6-
projectScm = scm:git:https://github.com/SimY4/xpath-to-xml
7-
projectIssues = https://github.com/SimY4/xpath-to-xml/issues
8-
9-
#signing.keyId = <keyid>
10-
#signing.password = <password>
11-
#signing.secretKeyRingFile = .gnupg/secring.gpg
12-
134
sonatypeUsername = <username>
145
sonatypePassword = <password>
156

gradle/publish-maven.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ publishing {
1313
fromResolutionResult()
1414
}
1515
}
16-
afterEvaluate {
16+
afterEvaluate { project ->
1717
artifactId = project.name
1818
pom {
1919
name = project.name
20-
description = projectDescription
20+
description = project.description
2121
url = 'http://github.com/SimY4/xpath-to-xml'
2222
inceptionYear = '2017'
2323

@@ -27,14 +27,14 @@ publishing {
2727
]
2828

2929
scm {
30-
connection = projectScm
31-
developerConnection = projectScm
32-
url = projectUrl
30+
connection = 'scm:git:https://github.com/SimY4/xpath-to-xml'
31+
developerConnection = 'scm:git:https://github.com/SimY4/xpath-to-xml'
32+
url = 'http://github.com/SimY4/xpath-to-xml'
3333
}
3434

3535
issueManagement {
3636
system = 'GitHub'
37-
url = projectIssues
37+
url = 'https://github.com/SimY4/xpath-to-xml/issues'
3838
}
3939

4040
licenses {

xpath-to-json-gson/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/benchmark-jmh.gradle')
22

3+
description = 'Convenient utility to build JSON models by evaluating XPath expressions'
4+
35
java {
46
sourceCompatibility = JavaVersion.VERSION_1_7
57
targetCompatibility = JavaVersion.VERSION_1_7

xpath-to-json-jackson/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/benchmark-jmh.gradle')
22

3+
description = 'Convenient utility to build JSON models by evaluating XPath expressions'
4+
35
java {
46
sourceCompatibility = JavaVersion.VERSION_1_8
57
targetCompatibility = JavaVersion.VERSION_1_8

xpath-to-json-jakarta/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/benchmark-jmh.gradle')
22

3+
description = 'Convenient utility to build JSON models by evaluating XPath expressions'
4+
35
java {
46
sourceCompatibility = JavaVersion.VERSION_1_8
57
targetCompatibility = JavaVersion.VERSION_1_8

xpath-to-xml-core/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/check-mutationcoverage.gradle')
22

3+
description = 'Convenient utility to build XML models by evaluating XPath expressions'
4+
35
dependencies {
46
testImplementation project(':xpath-to-xml-test')
57
testImplementation libs.mockito

xpath-to-xml-dom/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/benchmark-jmh.gradle')
22

3+
description = 'Convenient utility to build XML models by evaluating XPath expressions'
4+
35
dependencies {
46
api project(':xpath-to-xml-core')
57

xpath-to-xml-dom4j/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/benchmark-jmh.gradle')
22

3+
description = 'Convenient utility to build XML models by evaluating XPath expressions'
4+
35
java {
46
sourceCompatibility = JavaVersion.VERSION_1_8
57
targetCompatibility = JavaVersion.VERSION_1_8

xpath-to-xml-jdom/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply from: rootProject.file('gradle/benchmark-jmh.gradle')
22

3+
description = 'Convenient utility to build XML models by evaluating XPath expressions'
4+
35
dependencies {
46
api project(':xpath-to-xml-core')
57

xpath-to-xml-scala/build-3.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ tasks.withType(ScalaCompile).configureEach {
2525
deprecation = true
2626
encoding = 'UTF-8'
2727
additionalParameters = [
28-
'-project-url', projectUrl,
2928
'-explain', // Explain errors in more detail.
3029
'-explain-types', // Explain type errors in more detail.
3130
'-feature', // Emit warning and location for usages of features that should be imported explicitly.

0 commit comments

Comments
 (0)