Author: sppatel
Date: Wed Apr 26 10:37:45 2006
New Revision: 397252
URL: http://svn.apache.org/viewcvs?rev=397252&view=rev
Log:
uses manifest instead of plugin.xml
Removed:
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.common/pluginXmlTemplate.vm
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v1/pluginXmlTemplate.vm
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v11/pluginXmlTemplate.vm
Modified:
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.common/pom.xml
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v1/pom.xml
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v11/pom.xml
geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v11.core/src/org/apache/geronimo/st/v11/core/Activator.java
Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.common/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.common/pom.xml?rev=397252&r1=397251&r2=397252&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.common/pom.xml
(original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.common/pom.xml
Wed Apr 26 10:37:45 2006
@@ -66,22 +66,6 @@
</configuration>
<executions>
<execution>
- <id>generate-plugin-descriptor</id>
- <phase>process-resources</phase>
- <goals>
- <goal>pluginxml</goal>
- </goals>
- <configuration>
- <templateFile>pluginXmlTemplate.vm</templateFile>
- <destFile>plugin.xml</destFile>
- <contextMap>
- <id>${artifactId}</id>
- <name>Apache Geronimo Common Runtime Plug-in</name>
- <version>${version}</version>
- </contextMap>
- </configuration>
- </execution>
- <execution>
<id>generate-classpath</id>
<phase>process-resources</phase>
<goals>
Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v1/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v1/pom.xml?rev=397252&r1=397251&r2=397252&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v1/pom.xml
(original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v1/pom.xml
Wed Apr 26 10:37:45 2006
@@ -153,22 +153,6 @@
</configuration>
<executions>
<execution>
- <id>generate-plugin-descriptor</id>
- <phase>process-resources</phase>
- <goals>
- <goal>pluginxml</goal>
- </goals>
- <configuration>
- <templateFile>pluginXmlTemplate.vm</templateFile>
- <destFile>plugin.xml</destFile>
- <contextMap>
- <id>${artifactId}</id>
- <name>Apache Geronimo Runtime V1.0 Plug-in</name>
- <version>${version}</version>
- </contextMap>
- </configuration>
- </execution>
- <execution>
<id>generate-classpath</id>
<phase>process-resources</phase>
<goals>
Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v11/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v11/pom.xml?rev=397252&r1=397251&r2=397252&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v11/pom.xml
(original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v11/pom.xml
Wed Apr 26 10:37:45 2006
@@ -158,22 +158,6 @@
</configuration>
<executions>
<execution>
- <id>generate-plugin-descriptor</id>
- <phase>process-resources</phase>
- <goals>
- <goal>pluginxml</goal>
- </goals>
- <configuration>
- <templateFile>pluginXmlTemplate.vm</templateFile>
- <destFile>plugin.xml</destFile>
- <contextMap>
- <id>${artifactId}</id>
- <name>Apache Geronimo Runtime V1.1 Plug-in</name>
- <version>${version}</version>
- </contextMap>
- </configuration>
- </execution>
- <execution>
<id>generate-classpath</id>
<phase>process-resources</phase>
<goals>
Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v11.core/src/org/apache/geronimo/st/v11/core/Activator.java
URL: http://svn.apache.org/viewcvs/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v11.core/src/org/apache/geronimo/st/v11/core/Activator.java?rev=397252&r1=397251&r2=397252&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v11.core/src/org/apache/geronimo/st/v11/core/Activator.java
(original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v11.core/src/org/apache/geronimo/st/v11/core/Activator.java
Wed Apr 26 10:37:45 2006
@@ -32,6 +32,11 @@
*/
public void start(BundleContext context) throws Exception {
super.start(context);
+ try {
+ JMXAgent.getInstance().start();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
}
/*
|