File tree Expand file tree Collapse file tree 12 files changed +24
-16
lines changed Expand file tree Collapse file tree 12 files changed +24
-16
lines changed Original file line number Diff line number Diff line change 1
1
group = com.github.simy4.xpath
2
2
version = 2.3.10-SNAPSHOT
3
3
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
-
13
4
sonatypeUsername = <username>
14
5
sonatypePassword = <password>
15
6
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ publishing {
13
13
fromResolutionResult()
14
14
}
15
15
}
16
- afterEvaluate {
16
+ afterEvaluate { project ->
17
17
artifactId = project. name
18
18
pom {
19
19
name = project. name
20
- description = projectDescription
20
+ description = project . description
21
21
url = ' http://github.com/SimY4/xpath-to-xml'
22
22
inceptionYear = ' 2017'
23
23
@@ -27,14 +27,14 @@ publishing {
27
27
]
28
28
29
29
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 '
33
33
}
34
34
35
35
issueManagement {
36
36
system = ' GitHub'
37
- url = projectIssues
37
+ url = ' https://github.com/SimY4/xpath-to-xml/issues '
38
38
}
39
39
40
40
licenses {
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
2
2
3
+ description = ' Convenient utility to build JSON models by evaluating XPath expressions'
4
+
3
5
java {
4
6
sourceCompatibility = JavaVersion . VERSION_1_7
5
7
targetCompatibility = JavaVersion . VERSION_1_7
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
2
2
3
+ description = ' Convenient utility to build JSON models by evaluating XPath expressions'
4
+
3
5
java {
4
6
sourceCompatibility = JavaVersion . VERSION_1_8
5
7
targetCompatibility = JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
2
2
3
+ description = ' Convenient utility to build JSON models by evaluating XPath expressions'
4
+
3
5
java {
4
6
sourceCompatibility = JavaVersion . VERSION_1_8
5
7
targetCompatibility = JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/check-mutationcoverage.gradle' )
2
2
3
+ description = ' Convenient utility to build XML models by evaluating XPath expressions'
4
+
3
5
dependencies {
4
6
testImplementation project(' :xpath-to-xml-test' )
5
7
testImplementation libs. mockito
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
2
2
3
+ description = ' Convenient utility to build XML models by evaluating XPath expressions'
4
+
3
5
dependencies {
4
6
api project(' :xpath-to-xml-core' )
5
7
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
2
2
3
+ description = ' Convenient utility to build XML models by evaluating XPath expressions'
4
+
3
5
java {
4
6
sourceCompatibility = JavaVersion . VERSION_1_8
5
7
targetCompatibility = JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change 1
1
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
2
2
3
+ description = ' Convenient utility to build XML models by evaluating XPath expressions'
4
+
3
5
dependencies {
4
6
api project(' :xpath-to-xml-core' )
5
7
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ tasks.withType(ScalaCompile).configureEach {
25
25
deprecation = true
26
26
encoding = ' UTF-8'
27
27
additionalParameters = [
28
- ' -project-url' , projectUrl,
29
28
' -explain' , // Explain errors in more detail.
30
29
' -explain-types' , // Explain type errors in more detail.
31
30
' -feature' , // Emit warning and location for usages of features that should be imported explicitly.
You can’t perform that action at this time.
0 commit comments