File tree 2 files changed +4
-2
lines changed
src/main/java/com/rundeck/plugins/aws
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ configurations {
44
44
45
45
dependencies {
46
46
compile group : ' org.rundeck' , name : ' rundeck-core' , version : ' 2.10.0'
47
+ compile " org.slf4j:slf4j-api:1.7.30"
47
48
pluginLibs (' com.amazonaws:aws-java-sdk-s3:1.11.743' ) {
48
49
exclude group : " com.fasterxml.jackson.core"
49
50
}
Original file line number Diff line number Diff line change 23
23
import java .io .OutputStream ;
24
24
import java .nio .file .Files ;
25
25
26
- import org .apache .log4j .Logger ;
27
26
28
27
import com .amazonaws .AmazonClientException ;
29
28
import com .amazonaws .ClientConfiguration ;
46
45
import com .dtolabs .rundeck .core .resources .format .ResourceFormatParserException ;
47
46
import com .dtolabs .rundeck .core .resources .format .UnsupportedFormatException ;
48
47
import com .dtolabs .utils .Streams ;
48
+ import org .slf4j .Logger ;
49
+ import org .slf4j .LoggerFactory ;
49
50
50
51
public class S3Base implements AWSCredentials ,ResourceModelSource , WriteableModelSource {
51
52
52
- private static final Logger logger = Logger .getLogger (S3Base .class );
53
+ private static final Logger logger = LoggerFactory .getLogger (S3Base .class );
53
54
54
55
private String AWSAccessKeyId ;
55
56
private String AWSSecretKey ;
You can’t perform that action at this time.
0 commit comments