Skip to content

Commit 149e5be

Browse files
authored
Merge pull request #4 from lfir/feat/f44
Updates for Fedora 44
2 parents 090e3c3 + 07e7d03 commit 149e5be

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## Fedora setup script
22

3-
Java (21+) program that installs most KDE applications and many development tools on
4-
Fedora 42 systems, using the [KDE Edition](https://fedoraproject.org/kde),
5-
which comes with Java 21 preinstalled, as a starting point.
3+
Java (25+) program that installs most KDE applications and many development tools on
4+
Fedora 44 systems, using the [KDE Edition](https://fedoraproject.org/kde),
5+
which comes with Java 25 preinstalled, as a starting point.
66
It also sets some configuration options useful for development work and system administration.
77

88
Current actions that can be applied (each needs to be confirmed first):

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
<groupId>cf.maybelambda</groupId>
88
<artifactId>fedora-setup-script</artifactId>
9-
<version>3.1.0</version>
9+
<version>4.0.0</version>
1010

1111
<properties>
12-
<maven.compiler.source>21</maven.compiler.source>
13-
<maven.compiler.target>21</maven.compiler.target>
12+
<maven.compiler.source>25</maven.compiler.source>
13+
<maven.compiler.target>25</maven.compiler.target>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
</properties>
1616

@@ -37,7 +37,7 @@
3737
<plugin>
3838
<groupId>org.apache.maven.plugins</groupId>
3939
<artifactId>maven-surefire-plugin</artifactId>
40-
<version>3.5.4</version>
40+
<version>3.5.5</version>
4141
<configuration>
4242
<useModulePath>false</useModulePath>
4343
</configuration>

src/main/java/cf/maybelambda/fedora/ConfigManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public class ConfigManager {
2121
"https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020"
2222
);
2323
private static final List<String> rpmFusionRepos = List.of(
24-
"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-42.noarch.rpm",
25-
"https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-42.noarch.rpm"
24+
"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-44.noarch.rpm",
25+
"https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-44.noarch.rpm"
2626
);
2727

2828
private static final String flatpakRemoteName = "flathub";

0 commit comments

Comments
 (0)