Author: jdonnerstag
Date: Tue May  3 21:08:34 2011
New Revision: 1099247

URL: http://svn.apache.org/viewvc?rev=1099247&view=rev
Log:
experimental gradle build files

Added:
    wicket/trunk/testing/wicket-threadtest/build.gradle
    wicket/trunk/wicket-auth-roles/build.gradle
    wicket/trunk/wicket-core/build.gradle
    wicket/trunk/wicket-datetime/build.gradle
    wicket/trunk/wicket-devutils/build.gradle
    wicket/trunk/wicket-examples/build.gradle
    wicket/trunk/wicket-extensions/build.gradle
    wicket/trunk/wicket-guice/build.gradle
    wicket/trunk/wicket-ioc/build.gradle
    wicket/trunk/wicket-jmx/build.gradle
    wicket/trunk/wicket-objectssizeof-agent/build.gradle
    wicket/trunk/wicket-request/build.gradle
    wicket/trunk/wicket-spring/build.gradle
    wicket/trunk/wicket-util/build.gradle
    wicket/trunk/wicket-velocity/build.gradle

Added: wicket/trunk/testing/wicket-threadtest/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/testing/wicket-threadtest/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/testing/wicket-threadtest/build.gradle (added)
+++ wicket/trunk/testing/wicket-threadtest/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,31 @@
+// ----------------------------------------------------------------------------
+// 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
+       }
+}

Added: wicket/trunk/wicket-auth-roles/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-auth-roles/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-auth-roles/build.gradle (added)
+++ wicket/trunk/wicket-auth-roles/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-core/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-core/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-core/build.gradle (added)
+++ wicket/trunk/wicket-core/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,23 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-datetime/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-datetime/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-datetime/build.gradle (added)
+++ wicket/trunk/wicket-datetime/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,23 @@
+// ----------------------------------------------------------------------------
+// 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"
+}

Added: wicket/trunk/wicket-devutils/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-devutils/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-devutils/build.gradle (added)
+++ wicket/trunk/wicket-devutils/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-examples/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-examples/build.gradle (added)
+++ wicket/trunk/wicket-examples/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,44 @@
+// ----------------------------------------------------------------------------
+// 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"
+}

Added: wicket/trunk/wicket-extensions/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-extensions/build.gradle (added)
+++ wicket/trunk/wicket-extensions/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-guice/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-guice/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-guice/build.gradle (added)
+++ wicket/trunk/wicket-guice/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,24 @@
+// ----------------------------------------------------------------------------
+// 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"
+}

Added: wicket/trunk/wicket-ioc/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-ioc/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-ioc/build.gradle (added)
+++ wicket/trunk/wicket-ioc/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,26 @@
+// ----------------------------------------------------------------------------
+// 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
+       }
+}

Added: wicket/trunk/wicket-jmx/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-jmx/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-jmx/build.gradle (added)
+++ wicket/trunk/wicket-jmx/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-objectssizeof-agent/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-objectssizeof-agent/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-objectssizeof-agent/build.gradle (added)
+++ wicket/trunk/wicket-objectssizeof-agent/build.gradle Tue May  3 21:08:34 
2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-request/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-request/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-request/build.gradle (added)
+++ wicket/trunk/wicket-request/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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')
+}

Added: wicket/trunk/wicket-spring/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-spring/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-spring/build.gradle (added)
+++ wicket/trunk/wicket-spring/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,30 @@
+// ----------------------------------------------------------------------------
+// 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
+       }
+}

Added: wicket/trunk/wicket-util/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-util/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-util/build.gradle (added)
+++ wicket/trunk/wicket-util/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,22 @@
+// ----------------------------------------------------------------------------
+// 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"
+}

Added: wicket/trunk/wicket-velocity/build.gradle
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-velocity/build.gradle?rev=1099247&view=auto
==============================================================================
--- wicket/trunk/wicket-velocity/build.gradle (added)
+++ wicket/trunk/wicket-velocity/build.gradle Tue May  3 21:08:34 2011
@@ -0,0 +1,23 @@
+// ----------------------------------------------------------------------------
+// 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