Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }