Updated Branches:
  refs/heads/master 5cb85cdc1 -> 021c8269e

Remove unused gradle files


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/d9455737
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/d9455737
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/d9455737

Branch: refs/heads/master
Commit: d94557374c9253bb990b0824851c6ed5c0c2d126
Parents: 5cb85cd
Author: Martijn Dashorst <[email protected]>
Authored: Fri May 4 14:56:22 2012 +0200
Committer: Martijn Dashorst <[email protected]>
Committed: Fri May 4 15:21:44 2012 +0200

----------------------------------------------------------------------
 build.gradle                            |  204 --------------------------
 build.gradle.disabled                   |  204 --------------------------
 settings.gradle                         |    2 -
 settings.gradle.disabled                |    2 -
 testing/wicket-threadtest/build.gradle  |   31 ----
 wicket-auth-roles/build.gradle          |   22 ---
 wicket-core/build.gradle                |   23 ---
 wicket-datetime/build.gradle            |   23 ---
 wicket-devutils/build.gradle            |   22 ---
 wicket-examples/build.gradle            |   44 ------
 wicket-extensions/build.gradle          |   22 ---
 wicket-guice/build.gradle               |   24 ---
 wicket-ioc/build.gradle                 |   26 ----
 wicket-jmx/build.gradle                 |   22 ---
 wicket-objectssizeof-agent/build.gradle |   22 ---
 wicket-request/build.gradle             |   22 ---
 wicket-spring/build.gradle              |   30 ----
 wicket-util/build.gradle                |   22 ---
 wicket-velocity/build.gradle            |   23 ---
 19 files changed, 0 insertions(+), 790 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
deleted file mode 100644
index 6212ef2..0000000
--- a/build.gradle
+++ /dev/null
@@ -1,204 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-// Wicket Gradle build file
-// 
-// @author Juergen Donnerstag
-// ----------------------------------------------------------------------------
-
-// A convenience method that calls the dependsOn method of the parent project 
-// for every child project (not every sub project). It declares an execution 
-// dependency on all children. 
-dependsOnChildren()
-
-// For testing purposes 
-/*
-def localReleaseRepo = new 
File("${System.properties.'user.home'}/local-gradle-repository/release").toURL().toString()
-def localSnapshotRepo = new 
File("${System.properties.'user.home'}/local-gradle-repository/snapshot").toURL().toString()
-*/
-
-// The root project is like a container and the subprojects method iterates 
-// over the elements of this container - the projects in this instance, but 
-// not deep subprojects - and injects the specified configuration. This way 
-// we can easily define some common dependencies
-subprojects { prj ->
-       apply plugin: 'java'
-       apply plugin: 'maven'
-       // apply plugin: 'code-quality'
-       // apply plugin: 'project-reports'
-       
-       // Wicket Maven group and version 
-       group = 'org.apache.wicket'
-       version = '1.5'
-       if(!System.properties.'release') {
-               version = version + '-SNAPSHOT'
-       }
-
-       /*
-       gradle.taskGraph.whenReady {taskGraph ->
-               if (taskGraph.hasTask(':release')) {
-                       version = '1.5'
-               } else {
-                       version = '1.5-SNAPSHOT'
-               }
-       }
-       */      
-
-       // Subproject "wicket" is only used to build the uber jars. No need to 
have eclipse project files
-       if (prj.name != "wicket") {
-               apply plugin: 'eclipse'
-               apply plugin: 'idea'
-
-               // We don't need / want the WTP/WST natures and facets
-               prj.eclipseProject.whenConfigured { p ->
-                       p.natures.removeAll 
'org.eclipse.wst.common.project.facet.core.nature', 
'org.eclipse.wst.common.modulecore.ModuleCoreNature', 
'org.eclipse.jem.workbench.JavaEMFNature'
-                       
-                       p.buildCommands.removeAll { 
it.name.startsWith('org.eclipse.wst.') }
-               }       
-
-               // No need to create .settings/org.eclipse.wst.* files either
-               prj.tasks.all { if(it.name.contains('eclipseWtp')) { it.enabled 
= false }}
-
-               // org.eclipse.jdt.core.prefs is provided via SVN. No need for 
gradle to modify them
-               prj.tasks.all { if(it.name.contains('eclipseJdt')) { it.enabled 
= false }}
-               prj.tasks.all { if(it.name.contains('cleanEclipseJdt')) { 
it.enabled = false }}
-       }
-       
-       // Use maven output dir
-       setBuildDir 'target'
-
-       sourceCompatibility = 1.5
-       targetCompatibility = 1.5
-
-       compileJava.options.compilerArgs = ['-Xlint:unchecked', 
'-Xlint:deprecation', '-g']
-       
-       // We have plenty of *.html, *.xml and *.properties files which we want 
to 
-       // copy/forward, like we do for *.java files.
-       sourceSets.main.resources.srcDir 'src/main/java' 
-       sourceSets.test.resources.srcDir 'src/test/java' 
-
-       task packageTests(type: Jar) {
-               from sourceSets.test.classes
-               classifier = 'tests'
-       }
-
-       artifacts.archives packageTests
-
-       task sourceJar(type: Jar) { from sourceSets.main.allSource; classifier 
= 'source' }
-       task javadocJar(type: Jar) { from javadoc.outputs.files; classifier = 
'javadoc' }
-       artifacts { archives sourceJar, javadocJar }
-  
-       repositories {
-               mavenLocal()
-               mavenCentral()
-       
-               // Add the Apache snapshot maven repository
-               mavenRepo urls: ["http://repository.apache.org/snapshots";]
-
-               // mavenRepo urls: localReleaseRepo
-        // mavenRepo urls: localSnapshotRepo   
-       }
-
-       dependencies {
-               compile "org.slf4j:slf4j-api:1.6.1"
-               testCompile "org.slf4j:slf4j-log4j12:1.6.1"
-               testCompile "org.slf4j:jcl-over-slf4j:1.6.1"
-
-               compile("javax.servlet:servlet-api:2.5") {
-                       // Not available in any maven repo
-                       provided : true
-               }
-       
-               testCompile "junit:junit:4.8.2"
-               testCompile "org.mockito:mockito-all:1.8.5"
-       }
-       
-       // TODO Should this maven config be per module or wicket "root" only??
-       configure(install.repositories.mavenInstaller) {
-               pom.project {
-                       description = 'Wicket is a Java-based open source 
component web application framework.'
-                       url = 'http://wicket.apache.org/'
-                       inceptionYear = '2004'
-                                       
-                       organization {
-                               name 'Apache Software Foundation'
-                               url 'http://apache.org'
-                       }
-
-                       licenses {
-                               license {
-                                       name 'The Apache Software License, 
Version 2.0'
-                                       url 
'http://www.apache.org/licenses/LICENSE-2.0.txt'
-                                       distribution 'repo'
-                               }
-                       }
-
-                       issueManagement {
-                               system 'jira'
-                               url 
'http://issues.apache.org/jira/browse/WICKET'
-                       }
-                       
-                       ciManagement {
-                               system 'hudson'
-                               url 
'https://hudson.apache.org/hudson/job/Apache%20Wicket%201.5.x/'
-                       }
-
-                       scm {
-                               connection 
'scm:svn:http://svn.apache.org/repos/asf/wicket/releases/1.5-SNAPSHOT'
-                               developerConnection 
'scm:svn:https://svn.apache.org/repos/asf/wicket/releases/1.5-SNAPSHOT'
-                               url 
'http://svn.apache.org/viewvc/wicket/releases/1.5-SNAPSHOT'
-                       }
-
-                       mailingLists {
-                               mailingList {
-                                       name 'Wicket Announcements List'
-                                       post '[email protected]'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://www.nabble.com/Wicket---Announce-f13975.html'
-                               }
-                               
-                               mailingList {
-                                       name 'Wicket User List'
-                                       post '[email protected]'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://www.nabble.com/Wicket---User-f13976.html'
-                               }
-
-                               mailingList {
-                                       name 'Wicket Development List'
-                                       post '[email protected]'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://www.nabble.com/Wicket---Dev-f13977.html'
-                               }
-
-                               mailingList {
-                                       name 'Wicket commit List'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://mail-archives.apache.org/mod_mbox/wicket-commits/'
-                               }
-                       }
-
-                       properties {
-                               'project.build.sourceEncoding' 'UTF-8'
-                               'project.reporting.outputEncoding' 'UTF-8'
-                       }       
-               }
-       }
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/build.gradle.disabled
----------------------------------------------------------------------
diff --git a/build.gradle.disabled b/build.gradle.disabled
deleted file mode 100644
index 6212ef2..0000000
--- a/build.gradle.disabled
+++ /dev/null
@@ -1,204 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-// Wicket Gradle build file
-// 
-// @author Juergen Donnerstag
-// ----------------------------------------------------------------------------
-
-// A convenience method that calls the dependsOn method of the parent project 
-// for every child project (not every sub project). It declares an execution 
-// dependency on all children. 
-dependsOnChildren()
-
-// For testing purposes 
-/*
-def localReleaseRepo = new 
File("${System.properties.'user.home'}/local-gradle-repository/release").toURL().toString()
-def localSnapshotRepo = new 
File("${System.properties.'user.home'}/local-gradle-repository/snapshot").toURL().toString()
-*/
-
-// The root project is like a container and the subprojects method iterates 
-// over the elements of this container - the projects in this instance, but 
-// not deep subprojects - and injects the specified configuration. This way 
-// we can easily define some common dependencies
-subprojects { prj ->
-       apply plugin: 'java'
-       apply plugin: 'maven'
-       // apply plugin: 'code-quality'
-       // apply plugin: 'project-reports'
-       
-       // Wicket Maven group and version 
-       group = 'org.apache.wicket'
-       version = '1.5'
-       if(!System.properties.'release') {
-               version = version + '-SNAPSHOT'
-       }
-
-       /*
-       gradle.taskGraph.whenReady {taskGraph ->
-               if (taskGraph.hasTask(':release')) {
-                       version = '1.5'
-               } else {
-                       version = '1.5-SNAPSHOT'
-               }
-       }
-       */      
-
-       // Subproject "wicket" is only used to build the uber jars. No need to 
have eclipse project files
-       if (prj.name != "wicket") {
-               apply plugin: 'eclipse'
-               apply plugin: 'idea'
-
-               // We don't need / want the WTP/WST natures and facets
-               prj.eclipseProject.whenConfigured { p ->
-                       p.natures.removeAll 
'org.eclipse.wst.common.project.facet.core.nature', 
'org.eclipse.wst.common.modulecore.ModuleCoreNature', 
'org.eclipse.jem.workbench.JavaEMFNature'
-                       
-                       p.buildCommands.removeAll { 
it.name.startsWith('org.eclipse.wst.') }
-               }       
-
-               // No need to create .settings/org.eclipse.wst.* files either
-               prj.tasks.all { if(it.name.contains('eclipseWtp')) { it.enabled 
= false }}
-
-               // org.eclipse.jdt.core.prefs is provided via SVN. No need for 
gradle to modify them
-               prj.tasks.all { if(it.name.contains('eclipseJdt')) { it.enabled 
= false }}
-               prj.tasks.all { if(it.name.contains('cleanEclipseJdt')) { 
it.enabled = false }}
-       }
-       
-       // Use maven output dir
-       setBuildDir 'target'
-
-       sourceCompatibility = 1.5
-       targetCompatibility = 1.5
-
-       compileJava.options.compilerArgs = ['-Xlint:unchecked', 
'-Xlint:deprecation', '-g']
-       
-       // We have plenty of *.html, *.xml and *.properties files which we want 
to 
-       // copy/forward, like we do for *.java files.
-       sourceSets.main.resources.srcDir 'src/main/java' 
-       sourceSets.test.resources.srcDir 'src/test/java' 
-
-       task packageTests(type: Jar) {
-               from sourceSets.test.classes
-               classifier = 'tests'
-       }
-
-       artifacts.archives packageTests
-
-       task sourceJar(type: Jar) { from sourceSets.main.allSource; classifier 
= 'source' }
-       task javadocJar(type: Jar) { from javadoc.outputs.files; classifier = 
'javadoc' }
-       artifacts { archives sourceJar, javadocJar }
-  
-       repositories {
-               mavenLocal()
-               mavenCentral()
-       
-               // Add the Apache snapshot maven repository
-               mavenRepo urls: ["http://repository.apache.org/snapshots";]
-
-               // mavenRepo urls: localReleaseRepo
-        // mavenRepo urls: localSnapshotRepo   
-       }
-
-       dependencies {
-               compile "org.slf4j:slf4j-api:1.6.1"
-               testCompile "org.slf4j:slf4j-log4j12:1.6.1"
-               testCompile "org.slf4j:jcl-over-slf4j:1.6.1"
-
-               compile("javax.servlet:servlet-api:2.5") {
-                       // Not available in any maven repo
-                       provided : true
-               }
-       
-               testCompile "junit:junit:4.8.2"
-               testCompile "org.mockito:mockito-all:1.8.5"
-       }
-       
-       // TODO Should this maven config be per module or wicket "root" only??
-       configure(install.repositories.mavenInstaller) {
-               pom.project {
-                       description = 'Wicket is a Java-based open source 
component web application framework.'
-                       url = 'http://wicket.apache.org/'
-                       inceptionYear = '2004'
-                                       
-                       organization {
-                               name 'Apache Software Foundation'
-                               url 'http://apache.org'
-                       }
-
-                       licenses {
-                               license {
-                                       name 'The Apache Software License, 
Version 2.0'
-                                       url 
'http://www.apache.org/licenses/LICENSE-2.0.txt'
-                                       distribution 'repo'
-                               }
-                       }
-
-                       issueManagement {
-                               system 'jira'
-                               url 
'http://issues.apache.org/jira/browse/WICKET'
-                       }
-                       
-                       ciManagement {
-                               system 'hudson'
-                               url 
'https://hudson.apache.org/hudson/job/Apache%20Wicket%201.5.x/'
-                       }
-
-                       scm {
-                               connection 
'scm:svn:http://svn.apache.org/repos/asf/wicket/releases/1.5-SNAPSHOT'
-                               developerConnection 
'scm:svn:https://svn.apache.org/repos/asf/wicket/releases/1.5-SNAPSHOT'
-                               url 
'http://svn.apache.org/viewvc/wicket/releases/1.5-SNAPSHOT'
-                       }
-
-                       mailingLists {
-                               mailingList {
-                                       name 'Wicket Announcements List'
-                                       post '[email protected]'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://www.nabble.com/Wicket---Announce-f13975.html'
-                               }
-                               
-                               mailingList {
-                                       name 'Wicket User List'
-                                       post '[email protected]'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://www.nabble.com/Wicket---User-f13976.html'
-                               }
-
-                               mailingList {
-                                       name 'Wicket Development List'
-                                       post '[email protected]'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://www.nabble.com/Wicket---Dev-f13977.html'
-                               }
-
-                               mailingList {
-                                       name 'Wicket commit List'
-                                       subscribe 
'[email protected]'
-                                       unsubscribe 
'[email protected]'
-                                       archive 
'http://mail-archives.apache.org/mod_mbox/wicket-commits/'
-                               }
-                       }
-
-                       properties {
-                               'project.build.sourceEncoding' 'UTF-8'
-                               'project.reporting.outputEncoding' 'UTF-8'
-                       }       
-               }
-       }
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/settings.gradle
----------------------------------------------------------------------
diff --git a/settings.gradle b/settings.gradle
deleted file mode 100644
index 8920333..0000000
--- a/settings.gradle
+++ /dev/null
@@ -1,2 +0,0 @@
-
-include 'wicket-util', 'wicket-request', 'wicket-core', 'wicket-datetime', 
'wicket-devutils', 'wicket-extensions', 'wicket-ioc', 'wicket-spring', 
'wicket-velocity', 'wicket-auth-roles', 'wicket-guice', 'wicket-jmx', 
'wicket-objectsizeof-agent', 'wicket-examples', 'wicket-archetype-quickstart', 
'wicket-threadtest', 'wicket'

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/settings.gradle.disabled
----------------------------------------------------------------------
diff --git a/settings.gradle.disabled b/settings.gradle.disabled
deleted file mode 100644
index 8920333..0000000
--- a/settings.gradle.disabled
+++ /dev/null
@@ -1,2 +0,0 @@
-
-include 'wicket-util', 'wicket-request', 'wicket-core', 'wicket-datetime', 
'wicket-devutils', 'wicket-extensions', 'wicket-ioc', 'wicket-spring', 
'wicket-velocity', 'wicket-auth-roles', 'wicket-guice', 'wicket-jmx', 
'wicket-objectsizeof-agent', 'wicket-examples', 'wicket-archetype-quickstart', 
'wicket-threadtest', 'wicket'

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/testing/wicket-threadtest/build.gradle
----------------------------------------------------------------------
diff --git a/testing/wicket-threadtest/build.gradle 
b/testing/wicket-threadtest/build.gradle
deleted file mode 100644
index 08d0db1..0000000
--- a/testing/wicket-threadtest/build.gradle
+++ /dev/null
@@ -1,31 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Thread Test'
-
-dependencies {
-       compile project(':wicket')
-       compile project(':wicket-extensions')
-       compile("commons-httpclient:commons-httpclient:3.1") {
-       exclude(module: 'commons-logging')
-       }
-
-       testCompile "httpunit:httpunit:1.6.1"
-       compile("org.eclipse.jetty.aggregate:jetty-all-server:7.3.0.v20110203") 
{
-       provided : true
-       }
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-auth-roles/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-auth-roles/build.gradle b/wicket-auth-roles/build.gradle
deleted file mode 100644
index 19361da..0000000
--- a/wicket-auth-roles/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Auth Roles'
-
-dependencies {
-       compile project(':wicket-core')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-core/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-core/build.gradle b/wicket-core/build.gradle
deleted file mode 100644
index 62c649c..0000000
--- a/wicket-core/build.gradle
+++ /dev/null
@@ -1,23 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Core'
-
-dependencies {
-       compile project(':wicket-util')
-       compile project(':wicket-request')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-datetime/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-datetime/build.gradle b/wicket-datetime/build.gradle
deleted file mode 100644
index b86a6ba..0000000
--- a/wicket-datetime/build.gradle
+++ /dev/null
@@ -1,23 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Date/Time'
-
-dependencies {
-       compile project(':wicket-core')
-       compile "joda-time:joda-time:1.6.2"
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-devutils/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-devutils/build.gradle b/wicket-devutils/build.gradle
deleted file mode 100644
index ad2df99..0000000
--- a/wicket-devutils/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Development Utilities'
-
-dependencies {
-       compile project(':wicket-core')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-examples/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-examples/build.gradle b/wicket-examples/build.gradle
deleted file mode 100644
index 2263fcc..0000000
--- a/wicket-examples/build.gradle
+++ /dev/null
@@ -1,44 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Examples'
-
-apply plugin: 'war'
-apply plugin: 'jetty'
-
-dependencies {
-       compile project(':wicket-core')
-       compile project(':wicket-extensions')
-       compile project(':wicket-guice')
-       compile project(':wicket-jmx')
-       compile project(':wicket-auth-roles')
-       compile project(':wicket-datetime')
-       compile project(':wicket-velocity')
-       compile project(':wicket-spring')
-       compile project(':wicket-devutils')
-       compile("org.springframework:spring-web:2.5.6.SEC02") {
-       exclude(module: 'commons-logging')
-       }
-
-       compile "commons-lang:commons-lang:2.6"
-       compile "velocity:velocity:1.4"
-       compile "com.uwyn:jhighlight:1.0"
-  
-       testCompile "httpunit:httpunit:1.6.1"
-  
-       providedCompile 
"org.eclipse.jetty.aggregate:jetty-all-server:7.3.0.v20110203"
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-extensions/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-extensions/build.gradle b/wicket-extensions/build.gradle
deleted file mode 100644
index ca76223..0000000
--- a/wicket-extensions/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Extensions'
-
-dependencies {
-       compile project(':wicket-core')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-guice/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-guice/build.gradle b/wicket-guice/build.gradle
deleted file mode 100644
index 0a68474..0000000
--- a/wicket-guice/build.gradle
+++ /dev/null
@@ -1,24 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Guice Integration'
-
-dependencies {
-       compile project(':wicket-core')
-       compile project(':wicket-ioc')
-       compile "com.google.inject:guice:2.0"
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-ioc/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-ioc/build.gradle b/wicket-ioc/build.gradle
deleted file mode 100644
index 6327681..0000000
--- a/wicket-ioc/build.gradle
+++ /dev/null
@@ -1,26 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket IoC common code'
-
-dependencies {
-       compile project(':wicket-core')
-       compile "cglib:cglib:2.2"
-       compile("easymock:easymock:1.2_Java1.3") {
-               provided : true
-       }
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-jmx/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-jmx/build.gradle b/wicket-jmx/build.gradle
deleted file mode 100644
index dd339a0..0000000
--- a/wicket-jmx/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket JMX'
-
-dependencies {
-       compile project(':wicket-core')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-objectssizeof-agent/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-objectssizeof-agent/build.gradle 
b/wicket-objectssizeof-agent/build.gradle
deleted file mode 100644
index 14ad65b..0000000
--- a/wicket-objectssizeof-agent/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Objects Sizeof Agent'
-
-dependencies {
-       compile project(':wicket')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-request/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-request/build.gradle b/wicket-request/build.gradle
deleted file mode 100644
index 700e041..0000000
--- a/wicket-request/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Request'
-
-dependencies {
-       compile project(':wicket-util')
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-spring/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-spring/build.gradle b/wicket-spring/build.gradle
deleted file mode 100644
index 4b4db95..0000000
--- a/wicket-spring/build.gradle
+++ /dev/null
@@ -1,30 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Spring Integration'
-
-dependencies {
-       compile project(':wicket-core')
-       compile project(':wicket-ioc')
-       compile("org.springframework:spring-web:2.5.6.SEC02") {
-               exclude(module: 'commons-logging')
-               provided : true
-       }
-       compile("easymock:easymock:1.2_Java1.3") {
-               provided : true
-       }
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-util/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-util/build.gradle b/wicket-util/build.gradle
deleted file mode 100644
index b3647ee..0000000
--- a/wicket-util/build.gradle
+++ /dev/null
@@ -1,22 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Util'
-
-dependencies {
-       compile "junit:junit:4.8.2"
-}

http://git-wip-us.apache.org/repos/asf/wicket/blob/d9455737/wicket-velocity/build.gradle
----------------------------------------------------------------------
diff --git a/wicket-velocity/build.gradle b/wicket-velocity/build.gradle
deleted file mode 100644
index 0327ad0..0000000
--- a/wicket-velocity/build.gradle
+++ /dev/null
@@ -1,23 +0,0 @@
-// ----------------------------------------------------------------------------
-// Licensed to the Apache Software Foundation (ASF) under one or more
-// contributor license agreements.  See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership.
-// The ASF licenses this file to You under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with
-// the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------
-
-description = 'Wicket Velocity'
-
-dependencies {
-       compile project(':wicket-core')
-       compile "org.apache.velocity:velocity:1.7"
-}

Reply via email to