Skip to content

Commit

Permalink
Minor fixes and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Guichaguri committed Jun 25, 2018
1 parent 361f4ce commit e33e226
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ MinimalFTP is published on JCenter and Maven Central
<dependency>
<groupId>com.guichaguri</groupId>
<artifactId>minimalftp</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<type>pom</type>
</dependency>
```

#### Gradle
```groovy
compile 'com.guichaguri:minimalftp:1.0.5'
compile 'com.guichaguri:minimalftp:1.0.6'
```

#### Ivy
```xml
<dependency org='com.guichaguri' name='minimalftp' rev='1.0.5'>
<dependency org='com.guichaguri' name='minimalftp' rev='1.0.6'>
<artifact name='minimalftp' ext='pom' />
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.guichaguri'
version '1.0.5'
version '1.0.6'

buildscript {
repositories {
Expand Down Expand Up @@ -62,8 +62,8 @@ bintray {
def pomConfig = {
licenses {
license {
name "GNU General Public License, Version 3.0"
url "https://www.gnu.org/licenses/gpl.txt"
name "Apache License, Version 2.0"
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
distribution "repo"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public interface IUserAuthenticator {
* The client will not send the host address if {@link #needsUsername(FTPConnection)} returns {@code false}
* or the client does not support custom hosts.
*
* @param con The FTP connection
* @param host The host address
* @return Whether the specified host is accepted
*/
Expand Down Expand Up @@ -65,7 +66,7 @@ default boolean acceptsHost(FTPConnection con, InetAddress host) {
*
* You can use a custom file system depending on the user.
*
* If the {@param host} is {@code null}, you can use a "default host" or a union of all hosts combined
* If the {@code host} is {@code null}, you can use a "default host" or a union of all hosts combined
* as some clients might not support custom hosts.
*
* @param con The FTP connection
Expand Down

0 comments on commit e33e226

Please sign in to comment.