Skip to content

Commit 8f5b330

Browse files
authored
Merge pull request #290 from seedstack/java-20
Java 21 compatibility, lib refresh
2 parents de8c0be + 3205695 commit 8f5b330

File tree

803 files changed

+899
-879
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

803 files changed

+899
-879
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions

checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<!--
33
4-
Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
4+
Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
55
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this

cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
3+
Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
44
55
This Source Code Form is subject to the terms of the Mozilla Public
66
License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.14.0-SNAPSHOT</version>
17+
<version>3.15.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-cli</artifactId>

cli/src/main/java/org/seedstack/seed/cli/CliConfig.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -17,6 +17,11 @@ public String getDefaultCommand() {
1717
return defaultCommand;
1818
}
1919

20+
public CliConfig setDefaultCommand(String defaultCommand) {
21+
this.defaultCommand = defaultCommand;
22+
return this;
23+
}
24+
2025
public boolean hasDefaultCommand() {
2126
return defaultCommand != null && !defaultCommand.isEmpty();
2227
}

cli/src/main/java/org/seedstack/seed/cli/CommandLineHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

cli/src/main/java/org/seedstack/seed/cli/WithCliCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

cli/src/main/java/org/seedstack/seed/cli/internal/CliContextInternal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

cli/src/main/java/org/seedstack/seed/cli/internal/CliErrorCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

cli/src/main/java/org/seedstack/seed/cli/internal/CliLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

cli/src/main/java/org/seedstack/seed/cli/internal/CliTestPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2024, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

0 commit comments

Comments
 (0)