Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Fedora setup script

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

Current actions that can be applied (each needs to be confirmed first):
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

<groupId>cf.maybelambda</groupId>
<artifactId>fedora-setup-script</artifactId>
<version>3.1.0</version>
<version>4.0.0</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -37,7 +37,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.5</version>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/cf/maybelambda/fedora/ConfigManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class ConfigManager {
"https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020"
);
private static final List<String> rpmFusionRepos = List.of(
"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-42.noarch.rpm",
"https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-42.noarch.rpm"
"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-44.noarch.rpm",
"https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-44.noarch.rpm"
);

private static final String flatpakRemoteName = "flathub";
Expand Down