You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
281 B

  1. group 'rs'
  2. version '1.0-SNAPSHOT'
  3. apply plugin: 'java'
  4. apply plugin: 'war'
  5. sourceCompatibility = 1.8
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
  11. testCompile group: 'junit', name: 'junit', version: '4.12'
  12. }