Skip to content

Commit f986c55

Browse files
committed
Fix gradle exclude path for test files
1 parent 62a7879 commit f986c55

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.gradle

+6-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,12 @@ license {
6565
mapping {
6666
java = 'SLASHSTAR_STYLE'
6767
}
68-
excludes(['**/djb/Curve25519.java', '**/sshj/common/Base64.java', '**/com/hierynomus/sshj/userauth/keyprovider/bcrypt/*.java', '**/test/resources/files/test_file*.txt'])
68+
excludes([
69+
'**/djb/Curve25519.java',
70+
'**/sshj/common/Base64.java',
71+
'**/com/hierynomus/sshj/userauth/keyprovider/bcrypt/*.java',
72+
'**/files/test_file_*.txt',
73+
])
6974
}
7075

7176
if (!JavaVersion.current().isJava9Compatible()) {

0 commit comments

Comments
 (0)