taylor 2004/08/17 18:17:31
Modified: jetspeed-api project.xml
jetspeed-api/src/java/org/apache/jetspeed/components/portletentity
PortletEntityNotGeneratedException.java
jetspeed-api/src/java/org/apache/jetspeed/components/persistence/store
PersistenceStoreInitializationException.java
Log:
removing all dependencies on jakarta commons and log4j to simply the jetspeed
requirements for deployment
we were creating class loader conflicts with other apps using commons or log4j, not
to mention some really ugly class loader problems in weblogic
CVS: ----------------------------------------------------------------------
CVS: PR:
CVS: If this change addresses a PR in the problem report tracking
CVS: database, then enter the PR number(s) here.
CVS: Obtained from:
CVS: If this change has been taken from another system, such as NCSA,
CVS: then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS: If this code has been contributed to Apache by someone else; i.e.,
CVS: they sent us a patch or a new module, then include their name/email
CVS: address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS: If we are doing pre-commit code reviews and someone else has
CVS: reviewed your changes, include their name(s) here.
CVS: If you have not had it reviewed then delete this line.
Revision Changes Path
1.7 +1 -1 jakarta-jetspeed-2/jetspeed-api/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed-2/jetspeed-api/project.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- project.xml 24 Jul 2004 10:49:40 -0000 1.6
+++ project.xml 18 Aug 2004 01:17:30 -0000 1.7
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2004 The Apache Software Foundation
Licensed 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>
-<extend>${basedir}/../project.xml</extend>
<pomVersion>3</pomVersion>
<id>jetspeed-api</id>
<groupId>jetspeed2</groupId>
<name>Jetspeed-2 Core API</name>
<currentVersion>2.0-a1-dev</currentVersion>
<package>org.apache.jetspeed</package>
<description>
Core API for implmeneting Jetspeed
</description>
<shortDescription>Helps locate resources on the file system.</shortDescription>
<repository>
<connection>scm:cvs:pserver:[EMAIL
PROTECTED]:/home/cvspublic:jakarta-jetspeed-2/components/jetspeed</connection>
<url>http://cvs.apache.org/viewcvs/jakarta-jetspeed-2/components/jetspeed/</url>
</repository>
<dependencies>
<dependency>
<id>commons-logging</id>
<version>1.0.3</version>
</dependency>
<dependency>
<id>junit</id>
<version>3.8.1</version>
</dependency>
<dependency>
<id>log4j</id>
<version>1.2.8</version>
</dependency>
<dependency>
<id>pluto</id>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<id>portlet-api</id>
<version>1.0</version>
</dependency>
<dependency>
<id>servletapi</id>
<version>2.3</version>
</dependency>
<dependency>
<id>commons-betwixt</id>
<version>1.0-beta-1</version>
</dependency>
<dependency>
<id>commons-digester</id>
<version>1.5</version>
</dependency>
<dependency>
<id>commons-lang</id>
<version>2.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/java</sourceDirectory>
<resources>
<resource>
<directory>${basedir}/src/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/Test*.java</include>
</includes>
<excludes>
</excludes>
<resources>
<resource>
<directory>${basedir}/src/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
</unitTest>
</build>
+<extend>${basedir}/../project.xml</extend>
<pomVersion>3</pomVersion>
<id>jetspeed-api</id>
<groupId>jetspeed2</groupId>
<name>Jetspeed-2 Core API</name>
<currentVersion>2.0-a1-dev</currentVersion>
<package>org.apache.jetspeed</package>
<description>
Core API for implmeneting Jetspeed
</description>
<shortDescription>Helps locate resources on the file system.</shortDescription>
<repository>
<connection>scm:cvs:pserver:[EMAIL
PROTECTED]:/home/cvspublic:jakarta-jetspeed-2/components/jetspeed</connection>
<url>http://cvs.apache.org/viewcvs/jakarta-jetspeed-2/components/jetspeed/</url>
</repository>
<dependencies>
<dependency>
<id>junit</id>
<version>3.8.1</version>
</dependency>
<dependency>
<id>pluto</id>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<id>portlet-api</id>
<version>1.0</version>
</dependency>
<dependency>
<id>servletapi</id>
<version>2.3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/java</sourceDirectory>
<resources>
<resource>
<directory>${basedir}/src/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/Test*.java</include>
</includes>
<excludes>
</excludes>
<resources>
<resource>
<directory>${basedir}/src/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
</unitTest>
</build>
<reports>
<report>maven-jdepend-plugin</report>
<report>maven-checkstyle-plugin</report>
1.2 +17 -10
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/components/portletentity/PortletEntityNotGeneratedException.java
Index: PortletEntityNotGeneratedException.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/components/portletentity/PortletEntityNotGeneratedException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PortletEntityNotGeneratedException.java 10 Jun 2004 20:07:49 -0000 1.1
+++ PortletEntityNotGeneratedException.java 18 Aug 2004 01:17:31 -0000 1.2
@@ -1,20 +1,27 @@
/*
- * Created on Jun 10, 2004
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Generation - Code and Comments
+ * Copyright 2000-2001,2004 The Apache Software Foundation.
+ *
+ * Licensed 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.
*/
package org.apache.jetspeed.components.portletentity;
-import org.apache.commons.lang.exception.NestableException;
-
/**
- * @author scott
*
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Generation - Code and Comments
+ * @author <a href="mailto:[EMAIL PROTECTED]">Scott T. Weaver</a>
+ * @version $Id$
*/
-public class PortletEntityNotGeneratedException extends NestableException
+
+public class PortletEntityNotGeneratedException extends Exception
{
/**
1.2 +1 -3
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/components/persistence/store/PersistenceStoreInitializationException.java
Index: PersistenceStoreInitializationException.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/components/persistence/store/PersistenceStoreInitializationException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PersistenceStoreInitializationException.java 5 Jun 2004 00:47:46 -0000
1.1
+++ PersistenceStoreInitializationException.java 18 Aug 2004 01:17:31 -0000
1.2
@@ -15,8 +15,6 @@
*/
package org.apache.jetspeed.components.persistence.store;
-import org.apache.commons.lang.exception.NestableException;
-
/**
* <p>
* PersistenceStoreInitializationException
@@ -28,7 +26,7 @@
* @version $ $
*
*/
-public class PersistenceStoreInitializationException extends NestableException
+public class PersistenceStoreInitializationException extends Exception
{
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]