File tree Expand file tree Collapse file tree 4 files changed +21
-69
lines changed
Expand file tree Collapse file tree 4 files changed +21
-69
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,21 +5,21 @@ plugins {
55}
66
77group = ' io.sf.carte'
8- version = ' 3.6 .0'
8+ version = ' 3.7 .0'
99
1010description = ' css4j-agent'
1111
1212dependencies {
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
4646extraJavaModuleInfo {
@@ -158,11 +158,11 @@ tasks.withType(JavaCompile) {
158158}
159159
160160tasks. 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
168168tasks. withType(AbstractArchiveTask ). configureEach {
You can’t perform that action at this time.
0 commit comments