Newer
Older
jetty / build.gradle
Mark George on 16 Aug 2021 335 bytes Recent update
plugins {
	id 'war'
}

repositories {
	mavenCentral()
}

dependencies {
	providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
	implementation group: 'com.h2database', name: 'h2', version: '1.4.200'
	implementation group: 'org.owasp.antisamy', name: 'antisamy', version: '1.5.7'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8