Service to convert books to kindle format and email to a kindle address
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.gradle 741B

12345678910111213141516171819202122232425262728293031323334
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.1.RELEASE")
  7. }
  8. }
  9. apply plugin: 'java'
  10. apply plugin: 'eclipse'
  11. apply plugin: 'idea'
  12. apply plugin: 'org.springframework.boot'
  13. apply plugin: 'io.spring.dependency-management'
  14. bootJar {
  15. baseName = 'gs-spring-boot'
  16. version = '0.1.0'
  17. }
  18. repositories {
  19. mavenCentral()
  20. }
  21. sourceCompatibility = 1.8
  22. targetCompatibility = 1.8
  23. dependencies {
  24. compile("org.springframework.boot:spring-boot-starter-web")
  25. testCompile("junit:junit")
  26. testCompile("org.springframework.boot:spring-boot-starter-test")
  27. compile("org.springframework.boot:spring-boot-starter-actuator")
  28. }