Skip to content

Commit c39bef0

Browse files
committed
Use single quotes in build scripts.
1 parent 7ca4671 commit c39bef0

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Classes provided by the HTTP-RPC framework include:
2929
* [WebServiceProxy](#webserviceproxy) - client-side invocation proxy for web services
3030
* [JSONEncoder and JSONDecoder](#jsonencoder-and-jsondecoder) - encodes/decodes an object hierarchy to/from JSON
3131
* [CSVEncoder and CSVDecoder](#csvencoder-and-csvdecoder) - encodes/decodes an iterable sequence of values to/from CSV
32-
* [TemplateEncoder](#templateencoder) - encodes an object hierarchy using a template document
32+
* [TemplateEncoder](#templateencoder) - encodes an object hierarchy using a [template document](template-reference.md)
3333
* [BeanAdapter](#beanadapter) - map adapter for Java beans
3434
* [ResultSetAdapter and Parameters](#resultsetadapter-and-parameters) - iterable adapter for JDBC result sets/applies named parameter values to prepared statements
3535
* [ElementAdapter](#elementadapter) - map adapter for XML elements

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ subprojects {
2525
}
2626

2727
dependencies {
28-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.2")
29-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.2")
28+
testImplementation('org.junit.jupiter:junit-jupiter-api:5.4.2')
29+
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.4.2')
3030
}
3131

3232
java {
@@ -47,7 +47,7 @@ subprojects {
4747
}
4848
}
4949

50-
if (!project.name.endsWith("test")) {
50+
if (!project.name.endsWith('test')) {
5151
task sourcesJar(type: Jar) {
5252
from sourceSets.main.allJava
5353
classifier = 'sources'
@@ -61,7 +61,7 @@ subprojects {
6161
publishing {
6262
repositories {
6363
maven {
64-
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
64+
url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
6565

6666
credentials {
6767
username nexusUsername

httprpc-test/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

httprpc-test/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414

1515
plugins {
16-
id "org.jetbrains.kotlin.jvm" version "1.3.21"
16+
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
1717
id 'war'
1818
}
1919

@@ -26,7 +26,7 @@ dependencies {
2626

2727
implementation project(':httprpc-server')
2828

29-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
29+
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
3030
}
3131

3232
compileJava {
@@ -37,7 +37,7 @@ compileJava {
3737

3838
compileKotlin {
3939
kotlinOptions {
40-
jvmTarget = "1.8"
40+
jvmTarget = '1.8'
4141
}
4242
}
4343

@@ -49,6 +49,6 @@ compileTestJava {
4949

5050
compileTestKotlin {
5151
kotlinOptions {
52-
jvmTarget = "1.8"
52+
jvmTarget = '1.8'
5353
}
5454
}

0 commit comments

Comments
 (0)