mirror of
https://github.com/hierynomus/sshj.git
synced 2025-12-07 07:40:55 +03:00
@@ -1,2 +1,5 @@
|
|||||||
language: java
|
language: java
|
||||||
sudo: false
|
sudo: false
|
||||||
|
jdk:
|
||||||
|
- oraclejdk7
|
||||||
|
- oraclejdk8
|
||||||
|
|||||||
@@ -15,8 +15,8 @@ repositories {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = 1.7
|
sourceCompatibility = 1.6
|
||||||
targetCompatibility = 1.7
|
targetCompatibility = 1.6
|
||||||
|
|
||||||
configurations.compile.transitive = false
|
configurations.compile.transitive = false
|
||||||
|
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ public class AuthPasswordTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static class StaticPasswordUpdateProvider implements PasswordUpdateProvider {
|
private static class StaticPasswordUpdateProvider implements PasswordUpdateProvider {
|
||||||
private Stack<String> newPasswords = new Stack<>();
|
private Stack<String> newPasswords = new Stack<String>();
|
||||||
|
|
||||||
public StaticPasswordUpdateProvider(String... newPasswords) {
|
public StaticPasswordUpdateProvider(String... newPasswords) {
|
||||||
for (int i = newPasswords.length - 1; i >= 0; i--) {
|
for (int i = newPasswords.length - 1; i >= 0; i--) {
|
||||||
|
|||||||
Reference in New Issue
Block a user