You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/03/18 04:13:46 UTC

svn commit: r1082813 - in /tapestry/tapestry5/trunk: settings.gradle tapestry-jmx/build.gradle

Author: hlship
Date: Fri Mar 18 03:13:45 2011
New Revision: 1082813

URL: http://svn.apache.org/viewvc?rev=1082813&view=rev
Log:
TAP5-116: Convert tapestry-jms module to build using Gradle

Added:
    tapestry/tapestry5/trunk/tapestry-jmx/build.gradle
Modified:
    tapestry/tapestry5/trunk/settings.gradle

Modified: tapestry/tapestry5/trunk/settings.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/settings.gradle?rev=1082813&r1=1082812&r2=1082813&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/settings.gradle (original)
+++ tapestry/tapestry5/trunk/settings.gradle Fri Mar 18 03:13:45 2011
@@ -1,5 +1,5 @@
 include "tapestry-annotations", "tapestry-test", "tapestry-func", "tapestry-ioc", "tapestry-json", "tapestry-core"
-include "tapestry-hibernate-core", "tapestry-hibernate"
-// TODO: tapestry-jmx, tapestry-upload, tapestry-spring, tapestry-beanvalidator
+include "tapestry-hibernate-core", "tapestry-hibernate", "tapestry-jmx"
+// TODO: , tapestry-upload, tapestry-spring, tapestry-beanvalidator
 // TODO (LATER): tapestry-component-report, quickstart
 

Added: tapestry/tapestry5/trunk/tapestry-jmx/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-jmx/build.gradle?rev=1082813&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-jmx/build.gradle (added)
+++ tapestry/tapestry5/trunk/tapestry-jmx/build.gradle Fri Mar 18 03:13:45 2011
@@ -0,0 +1,18 @@
+description = "Allows easy exposure of Tapestry Services as JMX MBeans"
+
+dependencies {
+  compile project(':tapestry-core')
+
+  testCompile project(':tapestry-test')
+  }
+
+test {
+    systemProperties "tapestry.service-reloading-enabled": "false"
+}
+
+
+jar {
+    manifest {
+        attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.jmx.JmxModule'
+    }
+}
\ No newline at end of file