File tree Expand file tree Collapse file tree 3 files changed +26
-13
lines changed Expand file tree Collapse file tree 3 files changed +26
-13
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,17 @@ repositories {
38
38
releasesOnly()
39
39
}
40
40
content {
41
- includeGroup 'io.sf.carte'
42
- includeGroup 'io.sf.jclf'
41
+ // Include all the groups used by popular io.sf.* projects
42
+ includeGroupByRegex 'io\\.sf\\..*'
43
+
44
+ // Alternatively:
45
+ //includeGroup 'io.sf.carte'
46
+ //includeGroup 'io.sf.jclf'
43
47
}
44
48
}
45
49
}
46
50
```
47
- please use this repository ** only** for the artifact groups listed in the ` includeGroup ` statements.
51
+ please use this repository only for the artifact groups listed in the ` includeGroup ` statements.
48
52
49
53
Then, in your ` build.gradle ` file:
50
54
``` groovy
@@ -65,8 +69,7 @@ and optional library packages are the following:
65
69
### Compile-time dependencies
66
70
67
71
- The [ css4j] ( https://github.com/css4j/css4j/releases ) library (and its transitive
68
- dependencies); version 4.0 or higher is recommended (compatibility with 5.0 or
69
- higher is likely but not guaranteed).
72
+ dependencies); version 5.0 or higher is recommended.
70
73
71
74
- The [ xml-dtd] ( https://github.com/css4j/xml-dtd ) library; version 4.1.1 or
72
75
higher is recommended.
Original file line number Diff line number Diff line change 1
- # css4j-agent version 4 .0 Release Notes
1
+ # css4j-agent version 5 .0 Release Notes
2
2
3
- ### March 30, 2023
3
+ ### October 5, 2024
4
4
5
5
<br />
6
6
@@ -15,8 +15,18 @@ Updated Public Suffix List.
15
15
## Detail of changes
16
16
17
17
- Update to latest public suffix list.
18
- - Upgrade to css4j 4.0
19
- - Upgrade to slf4j-api 2.0.7
20
- - Upgrade to extra-java-module-info 1.3
21
- - Upgrade Gradle wrapper to 8.0.2
22
- - Tests: convert the tests to JUnit 5.
18
+ - Use diamond operator.
19
+ - Small refactor in ` DefaultUserAgent ` .
20
+ - Use advanced for loop in ` ResourceDownloader ` .
21
+ - Add scm section to Maven POM data.
22
+ - Prefer css4j 5.0.
23
+ - Upgrade to xml-dtd 4.3.
24
+ - Upgrade JUnit to version 5.11.1.
25
+ - Use slf4j 2.0.16.
26
+ - Upgrade to extra-java-module-info version 1.9.
27
+ - Upgrade to actions/checkout@v4.
28
+ - Upgrade to actions/setup-java v4.
29
+ - Gradle: switch to gradle/actions/wrapper-validation.
30
+ - Upgrade Gradle wrapper to 8.10.2.
31
+ - Default to Linux line endings for source files.
32
+ - Bump copyright year to 2024.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
}
6
6
7
7
group = ' io.sf.carte'
8
- version = ' 4.0.1-SNAPSHOT '
8
+ version = ' 5.0 '
9
9
10
10
description = ' css4j-agent'
11
11
You can’t perform that action at this time.
0 commit comments