-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (29 loc) · 1.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* This build file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/3.4/userguide/java_library_plugin.html
*/
// Apply the java-library plugin to add support for Java Library
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'jetty'
project.webAppDirName = 'src/main/web-app'
repositories {
jcenter()
}
jettyRun.contextPath '/'
jettyStop.stopPort 8081
jettyStop.stopKey 'stop'
dependencies {
compile 'org.apache.shiro:shiro-core:1.3.2'
compile 'org.apache.shiro:shiro-web:1.3.2'
compile 'org.slf4j:slf4j-simple:1.7.13'
compile 'commons-logging:commons-logging:1.1.3'
compile 'javax.servlet:jstl:1.2'
compileOnly 'javax.servlet.jsp:javax.servlet.jsp-api:2.3.1'
compileOnly 'javax.servlet:javax.servlet-api:3.1.0'
// Use JUnit test framework
testCompile 'junit:junit:4.12'
}