File tree 3 files changed +27
-14
lines changed
3 files changed +27
-14
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,17 @@ repositories {
35
35
releasesOnly()
36
36
}
37
37
content {
38
- includeGroup 'io.sf.carte'
39
- includeGroup 'io.sf.jclf'
38
+ // Include all the groups used by popular io.sf.* projects
39
+ includeGroupByRegex 'io\\.sf\\..*'
40
+
41
+ // Alternatively:
42
+ //includeGroup 'io.sf.carte'
43
+ //includeGroup 'io.sf.jclf'
40
44
}
41
45
}
42
46
}
43
47
```
44
- please use this repository ** only** for the artifact groups listed in the ` includeGroup ` statements.
48
+ please use this repository only for the artifact groups listed in the ` includeGroup ` statements.
45
49
46
50
Then, in your ` build.gradle ` file:
47
51
``` groovy
@@ -62,7 +66,7 @@ and optional library packages are the following:
62
66
### Compile-time dependencies
63
67
64
68
- The [ css4j] ( https://github.com/css4j/css4j/releases ) library (and its transitive
65
- dependencies); version 4 .0 or higher is recommended (compatibility with 5 .0 or
69
+ dependencies); version 5 .0 or higher is recommended (compatibility with 6 .0 or
66
70
higher is likely but not guaranteed).
67
71
68
72
### Test dependencies
Original file line number Diff line number Diff line change 1
- # css4j-AWT version 4 .0 Release Notes
1
+ # css4j-AWT version 5 .0 Release Notes
2
2
3
- ### March 30, 2023
3
+ ### October 5, 2024
4
4
5
5
<br />
6
6
7
7
## Highlights
8
8
9
- ### Upgrade to css4j 4.0
9
+ ### Major version bumped to 5
10
10
11
- This library now benefits from the color upgrades in css4j 4.0.
11
+ To emphasize that it is compatible with css4j 5.0, major version was bumped to 5.
12
+ But in fact this library is essentially the same as version 4.0.
12
13
13
14
<br />
14
15
15
16
## Detail of changes
16
17
17
- - Upgrade to css4j 4.0
18
- - Upgrade to slf4j 2.0.7
19
- - Upgrade to extra-java-module-info 1.3
20
- - Upgrade Gradle wrapper to 8.0.2
21
- - Tests: convert the tests to JUnit 5.
18
+ - Use diamond operator.
19
+ - Convert to advanced for loop in ` isFontFamilyAvailable ` .
20
+ - Update the Javadoc package description.
21
+ - Bump copyright year to 2024.
22
+ - Add scm section to Maven POM data.
23
+ - Prefer css4j 5.0 in build.
24
+ - Upgrade to xml-dtd 4.3.
25
+ - Upgrade JUnit to version 5.11.1.
26
+ - Upgrade Gradle wrapper to 8.10.2.
27
+ - Use slf4j 2.0.16 in tests.
28
+ - Upgrade to extra-java-module-info version 1.9.
29
+ - Upgrade to wrapper-validation action v4.
30
+ - Default to Linux line endings for source files.
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-awt'
11
11
You can’t perform that action at this time.
0 commit comments