Skip to content

Commit 8f4b2fd

Browse files
committed
Add exercise 16 and 17
1 parent 4bfd36c commit 8f4b2fd

254 files changed

Lines changed: 4788 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
apply plugin: 'java'
2+
apply plugin: 'tomcat'
3+
4+
buildscript {
5+
repositories {
6+
jcenter()
7+
}
8+
9+
dependencies {
10+
classpath 'org.gradle.api.plugins:gradle-tomcat-plugin:1.0'
11+
}
12+
}
13+
14+
repositories {
15+
mavenCentral()
16+
}
17+
18+
dependencies {
19+
testCompile 'junit:junit:4.+'
20+
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
21+
compile 'org.springframework:spring-webmvc:4.0.0.RELEASE'
22+
compile 'org.springframework:spring-jdbc:4.0.0.RELEASE'
23+
compile 'org.springframework:spring-orm:4.0.0.RELEASE'
24+
compile 'org.hsqldb:hsqldb:2.3.1'
25+
runtime 'jstl:jstl:1.2'
26+
27+
compile 'org.hibernate:hibernate-core:4.3.0.Final'
28+
compile group: 'com.google.guava', name: 'guava', version: '15.0'
29+
30+
def tomcatVersion = '7.0.11'
31+
tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
32+
"org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}"
33+
tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}") {
34+
exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj'
35+
}
36+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)