-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from Wimmics/release-4.4.0
Release 4.4.0
- Loading branch information
Showing
3,755 changed files
with
246,971 additions
and
3,589 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
corese-command/src/main/java/fr/inria/corese/command/App.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package fr.inria.corese.command; | ||
|
||
import fr.inria.corese.command.programs.Convert; | ||
import fr.inria.corese.command.programs.LDScript; | ||
import fr.inria.corese.command.programs.Profile; | ||
import fr.inria.corese.command.programs.Sparql; | ||
import picocli.CommandLine; | ||
import picocli.CommandLine.Command; | ||
|
||
/** | ||
* Hello world! | ||
*/ | ||
@Command(name = "Corese-command", version = "4.4.0", mixinStandardHelpOptions = true, subcommands = { | ||
Convert.class, Sparql.class, Profile.class, LDScript.class, | ||
}) | ||
public final class App implements Runnable { | ||
|
||
public static void main(String[] args) { | ||
int exitCode = new CommandLine(new App()).execute(args); | ||
System.exit(exitCode); | ||
} | ||
|
||
@Override | ||
public void run() { | ||
// Print usage | ||
CommandLine.usage(new App(), System.out); | ||
} | ||
} |
10 changes: 5 additions & 5 deletions
10
...fr/inria/corese/cli/programs/Convert.java → ...nria/corese/command/programs/Convert.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.