您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.gradle 1021 B

12345678910111213141516171819
  1. apply plugin: "java"
  2. apply plugin: "eclipse"
  3. sourceCompatibility = 1.7
  4. targetCompatibility = 1.7
  5. [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
  6. description = ''
  7. dependencies {
  8. compile group: 'org.springframework', name: 'spring-web', version:'3.1.1.RELEASE'
  9. compile group: 'org.springframework', name: 'spring-webmvc', version:'3.1.1.RELEASE'
  10. compile group: 'org.springframework', name: 'spring-core', version:'3.1.1.RELEASE'
  11. compile group: 'org.springframework', name: 'spring-core', version:'3.1.1.RELEASE'
  12. compile group: 'com.itextpdf', name: 'itextpdf', version:'5.5.6'
  13. compile project(':easypoi-base')
  14. compile(group: 'javax.servlet', name: 'servlet-api', version:'2.5') {
  15. /* This dependency was originally in the Maven provided scope, but the project was not of type war.
  16. This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.
  17. Please review and delete this closure when resolved. */
  18. }
  19. }