You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by an...@apache.org on 2013/12/11 10:47:35 UTC

svn commit: r1550092 - in /tomee/tomee/trunk: ./ arquillian/arquillian-tomee-common/ arquillian/arquillian-tomee-webapp-remote/ assembly/openejb-lite/ container/openejb-core/ container/openejb-jee-accessors/ container/openejb-jee/ examples/quartz-app/ ...

Author: andygumbrecht
Date: Wed Dec 11 09:47:34 2013
New Revision: 1550092

URL: http://svn.apache.org/r1550092
Log:
Pull up versions into parent - All version management should be in the top level pom.xml
Pull shade quartz back in and call it what it is.

Added:
    tomee/tomee/trunk/shade/   (with props)
    tomee/tomee/trunk/shade/pom.xml
    tomee/tomee/trunk/shade/quartz/   (with props)
    tomee/tomee/trunk/shade/quartz/dependency-reduced-pom.xml
    tomee/tomee/trunk/shade/quartz/pom.xml
    tomee/tomee/trunk/shade/quartz/src/
    tomee/tomee/trunk/shade/quartz/src/main/
    tomee/tomee/trunk/shade/quartz/src/main/resources/
    tomee/tomee/trunk/shade/quartz/src/main/resources/quartz.properties
Modified:
    tomee/tomee/trunk/arquillian/arquillian-tomee-common/pom.xml
    tomee/tomee/trunk/arquillian/arquillian-tomee-webapp-remote/pom.xml
    tomee/tomee/trunk/assembly/openejb-lite/dependency-reduced-pom.xml
    tomee/tomee/trunk/assembly/openejb-lite/pom.xml
    tomee/tomee/trunk/container/openejb-core/pom.xml
    tomee/tomee/trunk/container/openejb-jee-accessors/pom.xml
    tomee/tomee/trunk/container/openejb-jee/pom.xml
    tomee/tomee/trunk/examples/quartz-app/pom.xml
    tomee/tomee/trunk/examples/quartz-app/quartz-beans/pom.xml
    tomee/tomee/trunk/examples/quartz-app/quartz-ra/pom.xml
    tomee/tomee/trunk/pom.xml

Modified: tomee/tomee/trunk/arquillian/arquillian-tomee-common/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/arquillian/arquillian-tomee-common/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/arquillian/arquillian-tomee-common/pom.xml (original)
+++ tomee/tomee/trunk/arquillian/arquillian-tomee-common/pom.xml Wed Dec 11 09:47:34 2013
@@ -202,7 +202,7 @@
           <groupId>wsdl4j</groupId>
         </exclusion>
         <exclusion>
-          <artifactId>quartz-openejb-shade</artifactId>
+          <artifactId>openejb-shade-quartz</artifactId>
           <groupId>org.apache.openejb.shade</groupId>
         </exclusion>
         <exclusion>

Modified: tomee/tomee/trunk/arquillian/arquillian-tomee-webapp-remote/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/arquillian/arquillian-tomee-webapp-remote/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/arquillian/arquillian-tomee-webapp-remote/pom.xml (original)
+++ tomee/tomee/trunk/arquillian/arquillian-tomee-webapp-remote/pom.xml Wed Dec 11 09:47:34 2013
@@ -226,7 +226,7 @@
           <groupId>wsdl4j</groupId>
         </exclusion>
         <exclusion>
-          <artifactId>quartz-openejb-shade</artifactId>
+          <artifactId>openejb-shade-quartz</artifactId>
           <groupId>org.apache.openejb.shade</groupId>
         </exclusion>
         <!-- <exclusion>

Modified: tomee/tomee/trunk/assembly/openejb-lite/dependency-reduced-pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/assembly/openejb-lite/dependency-reduced-pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/assembly/openejb-lite/dependency-reduced-pom.xml (original)
+++ tomee/tomee/trunk/assembly/openejb-lite/dependency-reduced-pom.xml Wed Dec 11 09:47:34 2013
@@ -13,7 +13,6 @@
     <plugins>
       <plugin>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>2.0</version>
         <executions>
           <execution>
             <id>lite</id>

Modified: tomee/tomee/trunk/assembly/openejb-lite/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/assembly/openejb-lite/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/assembly/openejb-lite/pom.xml (original)
+++ tomee/tomee/trunk/assembly/openejb-lite/pom.xml Wed Dec 11 09:47:34 2013
@@ -35,7 +35,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>2.0</version>
         <executions>
           <execution>
             <id>lite</id>

Modified: tomee/tomee/trunk/container/openejb-core/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/container/openejb-core/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/container/openejb-core/pom.xml (original)
+++ tomee/tomee/trunk/container/openejb-core/pom.xml Wed Dec 11 09:47:34 2013
@@ -608,8 +608,8 @@
     </dependency>
     <dependency>
       <groupId>org.apache.openejb.shade</groupId>
-      <artifactId>quartz-openejb-shade</artifactId>
-      <version>${quartz.version}</version>
+      <artifactId>openejb-shade-quartz</artifactId>
+      <version>${project.version}</version>
     </dependency>
     <!-- Dependency of Quartz -->
     <dependency>

Modified: tomee/tomee/trunk/container/openejb-jee-accessors/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/container/openejb-jee-accessors/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/container/openejb-jee-accessors/pom.xml (original)
+++ tomee/tomee/trunk/container/openejb-jee-accessors/pom.xml Wed Dec 11 09:47:34 2013
@@ -63,7 +63,6 @@
     <dependency>
       <groupId>org.metatype.sxc</groupId>
       <artifactId>sxc-jaxb-core</artifactId>
-      <version>0.8</version>
       <exclusions>
         <exclusion>
           <groupId>stax</groupId>

Modified: tomee/tomee/trunk/container/openejb-jee/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/container/openejb-jee/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/container/openejb-jee/pom.xml (original)
+++ tomee/tomee/trunk/container/openejb-jee/pom.xml Wed Dec 11 09:47:34 2013
@@ -122,7 +122,6 @@
           <plugin>
             <groupId>org.metatype.sxc</groupId>
             <artifactId>sxc-jaxb-maven-plugin</artifactId>
-            <version>0.8</version>
             <executions>
               <execution>
                 <configuration>

Modified: tomee/tomee/trunk/examples/quartz-app/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/quartz-app/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/quartz-app/pom.xml (original)
+++ tomee/tomee/trunk/examples/quartz-app/pom.xml Wed Dec 11 09:47:34 2013
@@ -25,6 +25,7 @@
   <name>OpenEJB :: Examples :: Quartz</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+	<version.openejb>4.6.1-SNAPSHOT</version.openejb>
   </properties>
   <modules>
     <module>quartz-ra</module>
@@ -62,13 +63,13 @@
     <dependencies>
       <dependency>
         <groupId>org.apache.openejb.shade</groupId>
-        <artifactId>quartz-openejb-shade</artifactId>
-        <version>2.2.0-SNAPSHOT</version>
+        <artifactId>openejb-shade-quartz</artifactId>
+        <version>${version.openejb}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.openejb</groupId>
         <artifactId>openejb-core</artifactId>
-        <version>4.6.1-SNAPSHOT</version>
+        <version>${version.openejb}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.openejb</groupId>

Modified: tomee/tomee/trunk/examples/quartz-app/quartz-beans/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/quartz-app/quartz-beans/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/quartz-app/quartz-beans/pom.xml (original)
+++ tomee/tomee/trunk/examples/quartz-app/quartz-beans/pom.xml Wed Dec 11 09:47:34 2013
@@ -35,7 +35,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.openejb.shade</groupId>
-      <artifactId>quartz-openejb-shade</artifactId>
+      <artifactId>openejb-shade-quartz</artifactId>
     </dependency>
     <dependency>
       <groupId>junit</groupId>

Modified: tomee/tomee/trunk/examples/quartz-app/quartz-ra/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/quartz-app/quartz-ra/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/quartz-app/quartz-ra/pom.xml (original)
+++ tomee/tomee/trunk/examples/quartz-app/quartz-ra/pom.xml Wed Dec 11 09:47:34 2013
@@ -33,7 +33,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.openejb.shade</groupId>
-      <artifactId>quartz-openejb-shade</artifactId>
+      <artifactId>openejb-shade-quartz</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.openejb</groupId>

Modified: tomee/tomee/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/pom.xml?rev=1550092&r1=1550091&r2=1550092&view=diff
==============================================================================
--- tomee/tomee/trunk/pom.xml (original)
+++ tomee/tomee/trunk/pom.xml Wed Dec 11 09:47:34 2013
@@ -143,7 +143,7 @@
 
     <bval.version>0.5</bval.version>
     <org.apache.activemq.version>5.9.0</org.apache.activemq.version>
-    <quartz.version>2.2.0-SNAPSHOT</quartz.version>
+    <quartz.version>2.2.1</quartz.version>
     <org.springframework.version>3.1.3.RELEASE</org.springframework.version>
     <junit.version>4.11</junit.version>
     <org.apache.axis2.version>1.4.1</org.apache.axis2.version>
@@ -186,6 +186,11 @@
           <artifactId>maven-bundle-plugin</artifactId>
           <version>${maven-bundle-plugin.version}</version>
         </plugin>
+		<plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
         <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>rat-maven-plugin</artifactId>
@@ -231,6 +236,11 @@
           <artifactId>dependency-report-plugin</artifactId>
           <version>1.0.2</version>
         </plugin>
+		<plugin>
+            <groupId>org.metatype.sxc</groupId>
+            <artifactId>sxc-jaxb-maven-plugin</artifactId>
+            <version>0.8</version>
+          </plugin>
       </plugins>
     </pluginManagement>
 
@@ -346,6 +356,7 @@
         <activeByDefault>true</activeByDefault>
       </activation>
       <modules>
+        <module>shade</module>
         <module>itests</module>
         <module>maven</module>
         <module>container</module>
@@ -362,6 +373,7 @@
       <id>quick</id>
       <modules>
         <module>maven</module>
+        <module>shade</module>
         <module>container</module>
         <module>server</module>
         <module>assembly</module>
@@ -373,6 +385,7 @@
     <profile>
       <id>openejb</id>
       <modules>
+        <module>shade</module>
         <module>itests</module>
         <module>container</module>
         <module>server</module>
@@ -1349,6 +1362,12 @@
         <groupId>org.apache.xbean</groupId>
         <artifactId>xbean-bundleutils</artifactId>
         <version>${xbeanVersion}</version>
+		<exclusions>
+        <exclusion>
+        <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+          </exclusion>
+		</exclusions>
       </dependency>
       <dependency>
         <groupId>org.apache.xbean</groupId>
@@ -1733,6 +1752,21 @@
         <artifactId>derbyclient</artifactId>
         <version>10.9.1.0</version>
       </dependency>
+	  <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-all</artifactId>
+      <version>2.2.1</version>
+    </dependency>
+	<dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+      <version>2.2.3</version>
+    </dependency>
+	<dependency>
+      <groupId>org.metatype.sxc</groupId>
+      <artifactId>sxc-jaxb-core</artifactId>
+      <version>0.8</version>
+    </dependency>
     </dependencies>
   </dependencyManagement>
   <distributionManagement>

Propchange: tomee/tomee/trunk/shade/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Dec 11 09:47:34 2013
@@ -0,0 +1 @@
+target

Added: tomee/tomee/trunk/shade/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/shade/pom.xml?rev=1550092&view=auto
==============================================================================
--- tomee/tomee/trunk/shade/pom.xml (added)
+++ tomee/tomee/trunk/shade/pom.xml Wed Dec 11 09:47:34 2013
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <artifactId>openejb</artifactId>
+    <groupId>org.apache.openejb</groupId>
+    <version>4.6.1-SNAPSHOT</version>
+  </parent>
+  
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>openejb-shade</artifactId>
+  <packaging>pom</packaging>
+  <name>OpenEJB :: Shade</name>
+
+  <modules>
+    <module>quartz</module>
+  </modules>
+</project>

Propchange: tomee/tomee/trunk/shade/quartz/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Dec 11 09:47:34 2013
@@ -0,0 +1 @@
+target

Added: tomee/tomee/trunk/shade/quartz/dependency-reduced-pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/shade/quartz/dependency-reduced-pom.xml?rev=1550092&view=auto
==============================================================================
--- tomee/tomee/trunk/shade/quartz/dependency-reduced-pom.xml (added)
+++ tomee/tomee/trunk/shade/quartz/dependency-reduced-pom.xml Wed Dec 11 09:47:34 2013
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <artifactId>openejb-shade</artifactId>
+    <groupId>org.apache.openejb</groupId>
+    <version>4.6.1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.openejb.shade</groupId>
+  <artifactId>openejb-shade-quartz</artifactId>
+  <name>OpenEJB :: Shade :: Quartz</name>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <version>2.2</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <createSourcesJar>true</createSourcesJar>
+              <relocations>
+                <relocation>
+                  <pattern>org.quartz</pattern>
+                  <shadedPattern>org.apache.openejb.quartz</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.terracotta</pattern>
+                  <shadedPattern>org.apache.openejb.terracotta</shadedPattern>
+                </relocation>
+              </relocations>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Added: tomee/tomee/trunk/shade/quartz/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/shade/quartz/pom.xml?rev=1550092&view=auto
==============================================================================
--- tomee/tomee/trunk/shade/quartz/pom.xml (added)
+++ tomee/tomee/trunk/shade/quartz/pom.xml Wed Dec 11 09:47:34 2013
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <artifactId>openejb-shade</artifactId>
+    <groupId>org.apache.openejb</groupId>
+    <version>4.6.1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.openejb.shade</groupId>
+  <artifactId>openejb-shade-quartz</artifactId>
+  <name>OpenEJB :: Shade :: Quartz</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.quartz-scheduler</groupId>
+      <artifactId>quartz</artifactId>
+      <version>${quartz.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.transaction</groupId>
+          <artifactId>jta</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>c3p0</groupId>
+          <artifactId>c3p0</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.quartz-scheduler</groupId>
+      <artifactId>quartz</artifactId>
+      <version>${quartz.version}</version>
+      <classifier>sources</classifier>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.transaction</groupId>
+          <artifactId>jta</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>c3p0</groupId>
+          <artifactId>c3p0</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <version>2.2</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <createSourcesJar>true</createSourcesJar>
+              <relocations>
+                <relocation>
+                  <pattern>org.quartz</pattern>
+                  <shadedPattern>org.apache.openejb.quartz</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.terracotta</pattern>
+                  <shadedPattern>org.apache.openejb.terracotta</shadedPattern>
+                </relocation>
+              </relocations>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: tomee/tomee/trunk/shade/quartz/src/main/resources/quartz.properties
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/shade/quartz/src/main/resources/quartz.properties?rev=1550092&view=auto
==============================================================================
--- tomee/tomee/trunk/shade/quartz/src/main/resources/quartz.properties (added)
+++ tomee/tomee/trunk/shade/quartz/src/main/resources/quartz.properties Wed Dec 11 09:47:34 2013
@@ -0,0 +1,46 @@
+#
+# 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.
+#
+
+org.apache.openejb.quartz.scheduler.instanceName: DefaultQuartzScheduler
+org.apache.openejb.quartz.scheduler.rmi.export: false
+org.apache.openejb.quartz.scheduler.rmi.proxy: false
+org.apache.openejb.quartz.scheduler.wrapJobExecutionInUserTransaction: false
+
+org.apache.openejb.quartz.threadPool.class: org.apache.openejb.quartz.simpl.SimpleThreadPool
+org.apache.openejb.quartz.threadPool.threadCount: 10
+org.apache.openejb.quartz.threadPool.threadPriority: 5
+org.apache.openejb.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread: true
+
+org.apache.openejb.quartz.jobStore.misfireThreshold: 60000
+
+org.apache.openejb.quartz.jobStore.class: org.apache.openejb.quartz.simpl.RAMJobStore
+
+# default config
+org.quartz.scheduler.instanceName: DefaultQuartzScheduler
+org.quartz.scheduler.rmi.export: false
+org.quartz.scheduler.rmi.proxy: false
+org.quartz.scheduler.wrapJobExecutionInUserTransaction: false
+
+org.quartz.threadPool.class: org.quartz.simpl.SimpleThreadPool
+org.quartz.threadPool.threadCount: 10
+org.quartz.threadPool.threadPriority: 5
+org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread: true
+
+org.quartz.jobStore.misfireThreshold: 60000
+
+org.quartz.jobStore.class: org.quartz.simpl.RAMJobStore
+