Skip to content

Commit 4c0b0a5

Browse files
committed
Update build, README and Release Notes for v3.7.0.
1 parent 455735a commit 4c0b0a5

File tree

4 files changed

+21
-69
lines changed

4 files changed

+21
-69
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ You can run a variety of Gradle tasks with the Gradle wrapper (on Windows shells
2121

2222
- `./gradlew build` (normal build)
2323
- `./gradlew build publishToMavenLocal` (to install in local Maven repository)
24-
- `./gradlew copyJars` (to copy jar files into a top-level _jar_ directory)
2524
- `./gradlew lineEndingConversion` (to convert line endings of top-level text files to CRLF)
2625
- `./gradlew publish` (to deploy to a Maven repository, as described in the `publishing.repositories.maven` block of
27-
[build.gradle](https://github.com/css4j/css4j/blob/master/build.gradle))
26+
[build.gradle](https://github.com/css4j/css4j-agent/blob/master/build.gradle))
2827

2928
<br/>
3029

RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# css4j-agent version 3.7.0 Release Notes
2+
3+
### TBD
4+
5+
<br/>
6+
7+
## Highlights
8+
9+
### Public Suffix List.
10+
11+
Updated Public Suffix List.

RELEASE_NOTES.txt

Lines changed: 0 additions & 58 deletions
This file was deleted.

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ plugins {
55
}
66

77
group = 'io.sf.carte'
8-
version = '3.6.0'
8+
version = '3.7.0'
99

1010
description = 'css4j-agent'
1111

1212
dependencies {
1313
api('io.sf.carte:css4j') {
1414
version {
15-
strictly '[3.4.0,4.0['
16-
prefer '3.7.0'
15+
strictly '[3.4.0,)'
16+
prefer '3.7.1'
1717
}
1818
}
1919
api('io.sf.carte:xml-dtd') {
2020
version {
2121
require '[3.4.0,)'
22-
prefer '3.5.2'
22+
prefer '4.0.0'
2323
}
2424
}
2525
api 'nu.validator:htmlparser:1.4.16'
@@ -31,16 +31,16 @@ dependencies {
3131
api('org.slf4j:slf4j-api') {
3232
version {
3333
require '[1.7.28,)'
34-
prefer '1.7.32'
34+
prefer '1.7.35'
3535
}
3636
}
3737
testImplementation(group: 'io.sf.carte', name: 'css4j', classifier: 'tests') {
3838
version {
39-
strictly '[3.4.0,4.0['
40-
prefer '3.7.0'
39+
strictly '[3.4.0,)'
40+
prefer '3.7.1'
4141
}
4242
}
43-
testImplementation 'junit:junit:4.13.1'
43+
testImplementation 'junit:junit:4.13.2'
4444
}
4545

4646
extraJavaModuleInfo {
@@ -158,11 +158,11 @@ tasks.withType(JavaCompile) {
158158
}
159159

160160
tasks.withType(Javadoc) {
161-
failOnError false
162161
options.addStringOption('Xdoclint:none', '-quiet')
163162
options.addStringOption('encoding', 'UTF-8')
164163
options.addStringOption('charset', 'UTF-8')
165164
options.links 'https://docs.oracle.com/en/java/javase/11/docs/api/'
165+
options.links 'https://css4j.github.io/api/3/'
166166
}
167167

168168
tasks.withType(AbstractArchiveTask).configureEach {

0 commit comments

Comments
 (0)