Skip to content

Commit

Permalink
#497 Renamed module picocli-jline2-shell to picocli-shell-jline2; ren…
Browse files Browse the repository at this point in the history
…amed package accordingly
  • Loading branch information
remkop committed Oct 1, 2018
1 parent bd58926 commit 313de92
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<p align="center"><img src="https://picocli.info/images/logo/horizontal-400x150.png" alt="picocli" height="150px"></p>


# Picocli JLine2 Shell - build interactive shells with ease
# Picocli Shell JLine2 - build interactive shells with ease

Picocli JLine2 Shell contains components and documentation for building
Picocli Shell JLine2 contains components and documentation for building
interactive shell command line applications with JLine 2 and picocli.

JLine and picocli complement each other very well and have little or none functional overlap.
Expand Down Expand Up @@ -46,7 +46,7 @@ import picocli.CommandLine;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;
import picocli.CommandLine.ParentCommand;
import picocli.jline2.shell.PicocliJLineCompleter;
import picocli.shell.jline2.PicocliJLineCompleter;

/**
* Example that demonstrates how to build an interactive shell with JLine and picocli.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'info.picocli'
description 'Picocli JLine2 Shell - easily build interactive shell applications with JLine 2 and picocli.'
description 'Picocli Shell JLine2 - easily build interactive shell applications with JLine 2 and picocli.'
version "$projectVersion"
sourceCompatibility = 1.5

Expand All @@ -17,20 +17,20 @@ dependencies {

jar {
manifest {
attributes 'Specification-Title' : 'Picocli JLine2 Shell',
attributes 'Specification-Title' : 'Picocli Shell JLine2',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : version,
'Implementation-Title' : 'Picocli JLine2 Shell',
'Implementation-Title' : 'Picocli Shell JLine2',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': version,
'Automatic-Module-Name' : 'info.picocli.jline2.shell'
'Automatic-Module-Name' : 'info.picocli.shell.jline2'
}
}

ext {
bintrayBaseUrl = 'https://api.bintray.com/maven'
bintrayRepository = 'picocli'
bintrayPackage = 'picocli-jline2-shell'
bintrayPackage = 'picocli-shell-jline2'
bintrayUsername = System.getenv('BINTRAY_USER')
bintrayApiKey = System.getenv('BINTRAY_KEY')
}
Expand All @@ -45,7 +45,7 @@ publishing {
pom.withXml {
def root = asNode()
root.appendNode('packaging', 'jar')
root.appendNode('name', 'picocli-jline2-shell')
root.appendNode('name', 'picocli-shell-jline2')
root.appendNode('description', description)
root.appendNode('url', 'http://picocli.info')
root.appendNode('inceptionYear', '2018')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package picocli.jline2.shell;
package picocli.shell.jline2;

import jline.console.completer.ArgumentCompleter;
import jline.console.completer.Completer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package picocli.jline2.shell.example;
package picocli.shell.jline2.example;

import java.io.IOException;
import java.io.PrintWriter;
Expand All @@ -12,7 +12,7 @@
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;
import picocli.CommandLine.ParentCommand;
import picocli.jline2.shell.PicocliJLineCompleter;
import picocli.shell.jline2.PicocliJLineCompleter;

/**
* Example that demonstrates how to build an interactive shell with JLine and picocli.
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = 'picocli'
include 'picocli-examples'
include 'picocli-jline2-shell'
include 'picocli-shell-jline2'

0 comments on commit 313de92

Please sign in to comment.