No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
1021 B

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