25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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