From 111d49d68ad6dba633baa0048255b93b19232743 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 12 Mar 2010 01:40:27 +0000 Subject: [PATCH] Added build file for itest-context. --- gradle/javaprojects.gradle | 1 + itest/context/itest-context.gradle | 15 +++++++++++++++ settings.gradle | 3 ++- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 itest/context/itest-context.gradle diff --git a/gradle/javaprojects.gradle b/gradle/javaprojects.gradle index 50079d8af2..ea1645ad02 100644 --- a/gradle/javaprojects.gradle +++ b/gradle/javaprojects.gradle @@ -1,4 +1,5 @@ apply id: 'java' +apply id: 'eclipse' springVersion = '3.0.1.RELEASE' springLdapVersion = '1.3.0.RELEASE' diff --git a/itest/context/itest-context.gradle b/itest/context/itest-context.gradle new file mode 100644 index 0000000000..287dbe9d95 --- /dev/null +++ b/itest/context/itest-context.gradle @@ -0,0 +1,15 @@ + +dependencies { + compile project(':spring-security-core'), + 'aopalliance:aopalliance:1.0', + 'jython:jython:2.1', + "org.springframework:spring-aop:$springVersion", + "org.springframework:spring-tx:$springVersion", + "org.springframework:spring-beans:$springVersion" + + testCompile project(':spring-security-web'), + 'javax.servlet:servlet-api:2.5', + "org.springframework:spring-web:$springVersion" + testRuntime project(':spring-security-config') + +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index cb36923da0..15bb91d095 100644 --- a/settings.gradle +++ b/settings.gradle @@ -22,7 +22,8 @@ def String[] docs = [ ] def String[] itest = [ - 'web' + 'web', + 'context' ] include modules