Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 9 gadiem
pirms 8 gadiem
pirms 9 gadiem
pirms 9 gadiem
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. }