25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

build.gradle 876 B

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