diff --git a/spring-boot/ses-spring-boot/.gitignore b/spring-boot/ses-spring-boot/.gitignore index 9243c63..2cc7b3b 100644 --- a/spring-boot/ses-spring-boot/.gitignore +++ b/spring-boot/ses-spring-boot/.gitignore @@ -1,3 +1,6 @@ +### Gradle ### +gradle-app.setting +.gradletasknamecache .gradle /build/ !gradle/wrapper/gradle-wrapper.jar @@ -23,4 +26,109 @@ /nbbuild/ /dist/ /nbdist/ -/.nb-gradle/ \ No newline at end of file +/.nb-gradle/ + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +### MicrosoftOffice ### +*.tmp +~$*.doc* +~$*.xls* +*.xlk +~$*.ppt* +*.~vsd* + +### TortoiseGit ### +/.tgitconfig + diff --git a/spring-boot/ses-spring-boot/build.gradle b/spring-boot/ses-spring-boot/build.gradle index 6c5c463..6af5ba2 100644 --- a/spring-boot/ses-spring-boot/build.gradle +++ b/spring-boot/ses-spring-boot/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - springBootVersion = '2.0.4.RELEASE' + springBootVersion = '2.1.3.RELEASE' } repositories { mavenCentral() @@ -12,12 +12,13 @@ buildscript { apply plugin: 'java' apply plugin: 'eclipse' +apply plugin: 'idea' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' group = 'com.attacomsian' -version = '0.0.1-SNAPSHOT' -sourceCompatibility = 1.8 +version = '1.0-SNAPSHOT' +sourceCompatibility = JavaVersion.VERSION_1_8 repositories { mavenCentral() @@ -25,7 +26,7 @@ repositories { dependencyManagement { imports { - mavenBom 'com.amazonaws:aws-java-sdk-bom:1.11.394' + mavenBom 'com.amazonaws:aws-java-sdk-bom:1.11.501' } } @@ -36,5 +37,5 @@ dependencies { //aws ses sdk compile('com.amazonaws:aws-java-sdk-ses') //javax required for aws core - compile('javax.mail:javax.mail-api:1.6.1') + compile('javax.mail:javax.mail-api:1.6.2') } diff --git a/spring-boot/ses-spring-boot/gradle/wrapper/gradle-wrapper.properties b/spring-boot/ses-spring-boot/gradle/wrapper/gradle-wrapper.properties index 448cc64..58cb9f6 100644 --- a/spring-boot/ses-spring-boot/gradle/wrapper/gradle-wrapper.properties +++ b/spring-boot/ses-spring-boot/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Tue Feb 06 12:27:20 CET 2018 +#Wed Feb 20 01:53:44 MSK 2019 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip diff --git a/spring-boot/ses-spring-boot/src/main/resources/AwsCredentials.properties b/spring-boot/ses-spring-boot/src/main/resources/AwsCredentials.properties index 5d0dc05..616d5c1 100755 --- a/spring-boot/ses-spring-boot/src/main/resources/AwsCredentials.properties +++ b/spring-boot/ses-spring-boot/src/main/resources/AwsCredentials.properties @@ -1,5 +1,5 @@ -#Amazon AWS credentials -#These are dummy values. Replace them with -#acutal access key and secret key. -accessKey=32AABS3SDSF3DABHF3DF3 -secretKey=sd3sdf55sdfd445+ghjh44s+sdfdsd +#Amazon AWS credentials +#These are dummy values. Replace them with +#actual access key and secret key. +accessKey=32AABS3SDSF3DABHF3DF3 +secretKey=sd3sdf55sdfd445+ghjh44s+sdfdsd