File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/java/com/rundeck/plugins/aws Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ configurations {
4444
4545dependencies {
4646 compile group : ' org.rundeck' , name : ' rundeck-core' , version : ' 2.10.0'
47+ compile " org.slf4j:slf4j-api:1.7.30"
4748 pluginLibs (' com.amazonaws:aws-java-sdk-s3:1.11.743' ) {
4849 exclude group : " com.fasterxml.jackson.core"
4950 }
Original file line number Diff line number Diff line change 2323import java .io .OutputStream ;
2424import java .nio .file .Files ;
2525
26- import org .apache .log4j .Logger ;
2726
2827import com .amazonaws .AmazonClientException ;
2928import com .amazonaws .ClientConfiguration ;
4645import com .dtolabs .rundeck .core .resources .format .ResourceFormatParserException ;
4746import com .dtolabs .rundeck .core .resources .format .UnsupportedFormatException ;
4847import com .dtolabs .utils .Streams ;
48+ import org .slf4j .Logger ;
49+ import org .slf4j .LoggerFactory ;
4950
5051public class S3Base implements AWSCredentials ,ResourceModelSource , WriteableModelSource {
5152
52- private static final Logger logger = Logger .getLogger (S3Base .class );
53+ private static final Logger logger = LoggerFactory .getLogger (S3Base .class );
5354
5455 private String AWSAccessKeyId ;
5556 private String AWSSecretKey ;
You can’t perform that action at this time.
0 commit comments