This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 105328 - More copies of javaee.jar or its components
Summary: More copies of javaee.jar or its components
Status: RESOLVED FIXED
Alias: None
Product: obsolete
Classification: Unclassified
Component: visualweb (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: _ sandipchitale
URL:
Keywords: PERFORMANCE
Depends on: 111590
Blocks:
  Show dependency tree
 
Reported: 2007-05-31 22:08 UTC by _ rkubacki
Modified: 2007-08-09 21:46 UTC (History)
4 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description _ rkubacki 2007-05-31 22:08:23 UTC
Currently full IDE contains:

visualweb1/modules/ext/javaee.jar
soa1/modules/ext/script/javaee/javaee.jar
soa1/ant/nblib/javaee.jar

also some smaller subsets are contained in 
visualweb1/modules/ext/activation.jar 
enterprise4/modules/ext/jsr88javax.jar  
visualweb1/modules/ext/jsf-api.jar
java1/modules/ext/jaxws21/api/jsr181-api.jar
visualweb1/modules/ext/jsp-api.jar
visualweb1/modules/ext/servlet-api.jar
visualweb1/modules/ext/jstl.jar
java1/modules/ext/jaxws21/api/jaxb-api.jar
uml4/modules/ext/dom4j/jaxb-api.jar
java1/modules/ext/jaxws21/api/saaj-api.jar
soa1/modules/ext/xmlbeans-2.1.0/jsr173_1.0_api.jar
java1/modules/ext/jaxws21/api/jsr173_api.jar

It means we have 3-7 copies of some classes in IDE.
Comment 1 _ ludo 2007-06-01 01:24:37 UTC
perf, and legal?
Comment 2 _ ludo 2007-06-01 01:24:53 UTC
perf, and legal?
Comment 3 Petr Jiricka 2007-06-03 21:51:52 UTC
So why is this assigned to j2ee? Most of the issues seem to be between web
services, visual web and SOA teams. Who do you expect to own this?
Comment 4 _ rkubacki 2007-06-04 18:55:58 UTC
IANAL so I can't tell if there are legal consequences.

Why j2ee? If you know about better owner then you can reassign this. It is about
JavaEE so I used this category.
Comment 5 Petr Jiricka 2007-06-05 08:57:48 UTC
The enterprise4 cluster currently contains:
enterprise4/modules/ext/jsr88javax.jar
enterprise4/modules/ext/jsf12/*
enterprise4/modules/ext/servlet2.5-jsp2.1-api.jar
enterprise4/modules/ext/jstl.jar

Hopefully the visualweb and soa clusters can just reuse these without the need
to bundle the full javaee.jar. Assigning to visualweb for now.

Comment 6 Jayashri Visvanathan 2007-06-06 00:46:33 UTC
I think Winston already looked into it and determined visual web design time
environment needed more than what is available but they may have changed recently.

Also, I spoke to Ludo and he mentioned that javaee.jar is available in the j2ee
cluster. Winston, you may want to contact him about this. 
Comment 7 Winston Prakash 2007-07-14 02:00:44 UTC
After some struggle finally I switched to the Java EE 5  jar at  j2ee/external/javaee-api-5.jar
But I got this error while insync instantiates the designtime JSF container.

java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file
javax/servlet/ServletException
   at java.lang.ClassLoader.defineClass1(Native Method)
   at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
   at org.netbeans.JarClassLoader.simpleFindClass(JarClassLoader.java:180)
   at org.netbeans.ProxyClassLoader.fullFindClass(ProxyClassLoader.java:630)
   at org.netbeans.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:589)
   at org.netbeans.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:562)
   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:174)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
   at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
   at org.netbeans.modules.visualweb.insync.models.FacesModelSet.getFacesContainer(FacesModelSet.java:430)
   at org.netbeans.modules.visualweb.insync.models.FacesModelSet.<init>(FacesModelSet.java:345) 

Ludo's blogs says

http://weblogs.java.net/blog/ludo/archive/2007/01/index.html

You can compile you code with this jar, but of course you cannnot run your application with it since it contains only
the Java EE 5 APIs and does not contain any method bodies. If you try to run, you would get this exception:

   Exception in thread "main" java.lang.ClassFormatError:
  Absent Code attribute in method that is not native or abstract in class file javax/mail/Session

In order to execute a Java EE 5 application, you'll still need a Java EE 5 container, like for example the GlassFish
application server.

Looks like we may not be able to remove the javaee.jar since we need (API + some implementation) to run the Design Time
JSF container at design time?

Comment 8 Petr Jiricka 2007-07-16 06:08:43 UTC
Hi Winston, please try to use web/external/servlet2.5-jsp2.1-api.jar and web/external/jsf1-1.2/* instead of
j2ee/external/javaee-api-5.jar. These jars should have all you need, and Ludo is right about the limitation of
javaee-api-5.jar.

Comment 9 _ sandipchitale 2007-07-27 22:26:15 UTC
It should be noted that visualweb requires the classes from javaee.jar classes through the module classloader for 
designtime support.
Comment 10 _ sandipchitale 2007-07-27 23:01:58 UTC
I see that web/external/servlet2.5-jsp2.1-api.jar is wrapped by the library wrapper module web/servletjspapi (CNB 
org.netbeans.modules.servletjspapi) and exposes all the servlet and JSP APIs. However the same is not true for teh 
jars in web/external/jsf-1.2/*. Will it be OK to expose these as public packages? Is this an API change and does it 
need to go through an API review?
Comment 11 Petr Pisl 2007-07-30 13:52:13 UTC
Sandip is true. The servlet2.5-jsp2.1-api.jar is wrapped in the library wrapper (as NetBeans module). This is because
other NetBeans modules used the classes from this jar for compilation and NetBeans runtime. The situation with JSF is
different. There is not any NetBenas module, which used a class from these jars, in j2ee cluster. They are used only as
jars which are sometimes putted on web jsf project classpath and are used by the user's project. If you need to work
with jsf classes in a some module, I can create fast track review for this. Please write a list packages which you need
and from which jars?
Comment 12 _ sandipchitale 2007-07-30 17:20:16 UTC
ppisl, I am currently experimenting with wrapping of JSF API in a library wrapper module. Currently I am able to compile
everything however I get some ClassNotFound and/or NoClassDefFound exceptions. Once my experiment is done and successful
I will let you know to proceed. Also isn't there a convention to export all packages of APIs instead of only selected
one? Otherwise we may have to keep modifying the public packages set every time some APIs from not yet public packages
are used by the dependent modules.
Comment 13 Petr Pisl 2007-07-30 17:35:58 UTC
There can be used <subpackages> element. 
Comment 14 _ sandipchitale 2007-07-30 22:22:53 UTC
Hmmm...so far I have made the web/jsf12 a library wrapper module that wraps the ../external/jsf-1.2/jsf-api.jar and 
exports :

<package>javax.faces</package>
                <package>javax.faces.application</package>
                <package>javax.faces.component</package>
                <package>javax.faces.component.html</package>
                <package>javax.faces.context</package>
                <package>javax.faces.convert</package>
                <package>javax.faces.el</package>
                <package>javax.faces.event</package>
                <package>javax.faces.lifecycle</package>
                <package>javax.faces.model</package>
                <package>javax.faces.render</package>
                <package>javax.faces.validator</package>
                <package>javax.faces.webapp</package>

However I keep getting NoClassDefFoundError on javax.faces.context.FacesContext from the Insync code. Investigating...
Comment 15 Petr Pisl 2007-07-31 10:38:02 UTC
Try to use just:

<subpackages>javax.faces</subpackages>

I think it should work. 
Comment 16 _ sandipchitale 2007-08-01 05:00:18 UTC
Petr, here is the unified diff output for changes I had to make to the web/libs/jsf-1_2 to make the classes available 
to Visual Web modules. I use <subpackages> tag as you suggested. You can create fast track review for this.

Index: nbproject/project.xml
===================================================================
RCS file: /cvs/web/libs/jsf-1_2/nbproject/project.xml,v
retrieving revision 1.1
diff -u -u -r1.1 project.xml
--- nbproject/project.xml       31 Jul 2007 15:22:02 -0000      1.1
+++ nbproject/project.xml       31 Jul 2007 16:15:49 -0000
@@ -22,8 +22,24 @@
     <configuration>
         <data xmlns="http://www.netbeans.org/ns/nb-module-project/2">
             <code-name-base>org.netbeans.modules.web.jsf12</code-name-base>
-            <module-dependencies/>
-            <public-packages/>
+            <module-dependencies>
+                <dependency>
+                    <code-name-base>org.netbeans.modules.servletjspapi</code-name-base>
+                    <build-prerequisite/>
+                    <compile-dependency/>
+                    <run-dependency>
+                        <release-version>1</release-version>
+                        <specification-version>1.1</specification-version>
+                    </run-dependency>
+                </dependency>
+            </module-dependencies>
+            <class-path-extension>
+                <runtime-relative-path>ext/jsf-1_2/jsf-api.jar</runtime-relative-path>
+                <binary-origin>../../external/jsf-1.2/jsf-api.jar</binary-origin>
+            </class-path-extension>
+            <public-packages>
+                <subpackages>javax.faces</subpackages>
+            </public-packages>
         </data>
     </configuration>
 </project>
Comment 17 Petr Pisl 2007-08-01 10:37:05 UTC
I create a api fast review issue #111590. So if there will not be any objections (I expect this), I commit the changes
next week.
Comment 18 Jayashri Visvanathan 2007-08-01 19:30:34 UTC
Petr, Sandip,
  Petr Suchomel and Jesse are working on cleaning up libraries in a branch. Please see 
http://wiki.netbeans.org/wiki/view/DevFaqExternalLibrariesUpdated 

So this work should go into that branch.  I am adding Petr S to the CC list so that
he is in the loop.
Comment 19 _ sandipchitale 2007-08-08 15:39:10 UTC
Petr, any movement on issue # 111590?

Also are you aware of the issue # 111438 - External binaries location in CVS does not follow NB CVS rules - which 
states that all the external library jars are supposed to be moved into an external/ folder that is sibling of 
nbproject folder of your module. The spec for that is here:

http://wiki.netbeans.org/wiki/view/DevFaqExternalLibrariesUpdated

Are you going to handle this when you fix 111590?

I think all the external libraries in web/ module are in web/external/** however some modules that wrap these jars are 
in web/libs folder e.g. 

web/libs/jsf-1_2/ 

module wraps jars in:

web/external/jsf-1.2/

Comment 20 Petr Pisl 2007-08-08 16:40:47 UTC
Issue #111590 is done. 

I know about issue #111438. I talked with Petr Suchomel about the new rules for external libraries. Petr Suchomel is
going to correct our modules under web and j2ee cvs folders so I will not do anything in this issue. 
Comment 21 _ sandipchitale 2007-08-09 21:46:41 UTC
Bug Fix# 105328 More copies of javaee.jar or its components

Removed the module: 

visualweb/ravelibs/javaee-5

Adjusted the dependencies to the jars:

web/external/servlet2.5-jsp2.1-api.jar
web/external/jsf-1.2/jsf-api.jar

These jars are wrapped by wrapped by the following library wrapper modules:

web/libs/servletjspapi
web/libs/jsf-1_2

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\appbase\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/appbase/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\appbase\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/appbase/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\classloaderprovider\j2ee14\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/classloaderprovider/j2ee14/nbproject/project.xml,v  <--  project.xml
new revision: 1.9; previous revision: 1.8
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\classloaderprovider\j2ee15\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/classloaderprovider/j2ee15/nbproject/project.xml,v  <--  project.xml
new revision: 1.9; previous revision: 1.8
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\complib\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/complib/nbproject/project.xml,v  <--  project.xml
new revision: 1.12; previous revision: 1.11
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\dataprovider\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/dataprovider/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.6; previous revision: 1.5
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designer\jsf\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -
q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the 
dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars 
are wrapped by wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" 
project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designer/jsf/nbproject/project.xml,v  <--  project.xml
new revision: 1.11; previous revision: 1.10
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designer\markup\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designer/markup/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/designtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.10; previous revision: 1.9
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\rave\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/designtime/rave/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\rave\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designtime/rave/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\insync\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/insync/nbproject/project.xml,v  <--  project.xml
new revision: 1.13; previous revision: 1.12
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime-1.1\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime-1.1/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\runtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/jsfsupport/runtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.2; previous revision: 1.1
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\runtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/runtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\navigation\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/navigation/nbproject/project.xml,v  <--  project.xml
new revision: 1.11; previous revision: 1.10
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\project\importpage\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/project/importpage/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\api\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/propertyeditors/api/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\api\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/propertyeditors/api/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/propertyeditors/nbproject/project.xml,v  <--  project.xml
new revision: 1.10; previous revision: 1.9
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\el-ri-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/el-ri-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\jsf-portlet\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/jsf-portlet/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\jsf-ri-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/jsf-ri-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/webui/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\runtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/webui/runtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\runtime\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -
q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the 
dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars 
are wrapped by wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" 
project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/webui/runtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\woodstock\components\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/woodstock/components/nbproject/project.xml,v  <--  project.xml
new revision: 1.12; previous revision: 1.11
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\xhtml\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/xhtml/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\javaee-5: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" .cvsignore build.xml 
manifest.mf nbproject/.cvsignore nbproject/project.properties nbproject/project.xml release/.cvsignore 
release/modules/.cvsignore release/modules/ext/.cvsignore release/modules/ext/activation.jar 
release/modules/ext/javaee.jar release/modules/ext/mail.jar 
src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Removing .cvsignore;
/cvs/visualweb/ravelibs/javaee-5/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.2
done
Removing build.xml;
/cvs/visualweb/ravelibs/javaee-5/build.xml,v  <--  build.xml
new revision: delete; previous revision: 1.2
done
Removing manifest.mf;
/cvs/visualweb/ravelibs/javaee-5/manifest.mf,v  <--  manifest.mf
new revision: delete; previous revision: 1.1
done
Removing nbproject/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/nbproject/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing nbproject/project.properties;
/cvs/visualweb/ravelibs/javaee-5/nbproject/project.properties,v  <--  project.properties
new revision: delete; previous revision: 1.1
done
Removing nbproject/project.xml;
/cvs/visualweb/ravelibs/javaee-5/nbproject/project.xml,v  <--  project.xml
new revision: delete; previous revision: 1.8
done
Removing release/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/modules/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/ext/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/ext/activation.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/activation.jar,v  <--  activation.jar
new revision: delete; previous revision: 1.2
done
Removing release/modules/ext/javaee.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/javaee.jar,v  <--  javaee.jar
new revision: delete; previous revision: 1.2
done
Removing release/modules/ext/mail.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/mail.jar,v  <--  mail.jar
new revision: delete; previous revision: 1.2
done
Removing src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties;
/cvs/visualweb/ravelibs/javaee-5/src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties,v  <--  
Bundle.properties
new revision: delete; previous revision: 1.1
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\appbase\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/appbase/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\appbase\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/appbase/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\classloaderprovider\j2ee14\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/classloaderprovider/j2ee14/nbproject/project.xml,v  <--  project.xml
new revision: 1.9; previous revision: 1.8
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\classloaderprovider\j2ee15\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/classloaderprovider/j2ee15/nbproject/project.xml,v  <--  project.xml
new revision: 1.9; previous revision: 1.8
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\complib\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/complib/nbproject/project.xml,v  <--  project.xml
new revision: 1.12; previous revision: 1.11
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\dataprovider\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/dataprovider/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.6; previous revision: 1.5
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designer\jsf\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -
q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the 
dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars 
are wrapped by wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" 
project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designer/jsf/nbproject/project.xml,v  <--  project.xml
new revision: 1.11; previous revision: 1.10
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designer\markup\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designer/markup/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/designtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.10; previous revision: 1.9
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\rave\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/designtime/rave/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\rave\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designtime/rave/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\insync\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/insync/nbproject/project.xml,v  <--  project.xml
new revision: 1.13; previous revision: 1.12
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime-1.1\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime-1.1/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\runtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/jsfsupport/runtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.2; previous revision: 1.1
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\runtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/runtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\navigation\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/navigation/nbproject/project.xml,v  <--  project.xml
new revision: 1.11; previous revision: 1.10
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\project\importpage\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/project/importpage/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\api\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/propertyeditors/api/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\api\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/propertyeditors/api/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/propertyeditors/nbproject/project.xml,v  <--  project.xml
new revision: 1.10; previous revision: 1.9
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\el-ri-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/el-ri-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\jsf-portlet\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/jsf-portlet/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\jsf-ri-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/jsf-ri-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/webui/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\runtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/webui/runtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\runtime\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -
q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the 
dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars 
are wrapped by wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" 
project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/webui/runtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\woodstock\components\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/woodstock/components/nbproject/project.xml,v  <--  project.xml
new revision: 1.12; previous revision: 1.11
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\xhtml\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/xhtml/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\javaee-5: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" .cvsignore build.xml 
manifest.mf nbproject/.cvsignore nbproject/project.properties nbproject/project.xml release/.cvsignore 
release/modules/.cvsignore release/modules/ext/.cvsignore release/modules/ext/activation.jar 
release/modules/ext/javaee.jar release/modules/ext/mail.jar 
src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Removing .cvsignore;
/cvs/visualweb/ravelibs/javaee-5/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.2
done
Removing build.xml;
/cvs/visualweb/ravelibs/javaee-5/build.xml,v  <--  build.xml
new revision: delete; previous revision: 1.2
done
Removing manifest.mf;
/cvs/visualweb/ravelibs/javaee-5/manifest.mf,v  <--  manifest.mf
new revision: delete; previous revision: 1.1
done
Removing nbproject/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/nbproject/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing nbproject/project.properties;
/cvs/visualweb/ravelibs/javaee-5/nbproject/project.properties,v  <--  project.properties
new revision: delete; previous revision: 1.1
done
Removing nbproject/project.xml;
/cvs/visualweb/ravelibs/javaee-5/nbproject/project.xml,v  <--  project.xml
new revision: delete; previous revision: 1.8
done
Removing release/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/modules/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/ext/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/ext/activation.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/activation.jar,v  <--  activation.jar
new revision: delete; previous revision: 1.2
done
Removing release/modules/ext/javaee.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/javaee.jar,v  <--  javaee.jar
new revision: delete; previous revision: 1.2
done
Removing release/modules/ext/mail.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/mail.jar,v  <--  mail.jar
new revision: delete; previous revision: 1.2
done
Removing src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties;
/cvs/visualweb/ravelibs/javaee-5/src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties,v  <--  
Bundle.properties
new revision: delete; previous revision: 1.1
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\appbase\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/appbase/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\appbase\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/appbase/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\classloaderprovider\j2ee14\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/classloaderprovider/j2ee14/nbproject/project.xml,v  <--  project.xml
new revision: 1.9; previous revision: 1.8
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\classloaderprovider\j2ee15\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/classloaderprovider/j2ee15/nbproject/project.xml,v  <--  project.xml
new revision: 1.9; previous revision: 1.8
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\complib\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/complib/nbproject/project.xml,v  <--  project.xml
new revision: 1.12; previous revision: 1.11
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\dataprovider\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/dataprovider/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.6; previous revision: 1.5
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designer\jsf\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -
q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the 
dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars 
are wrapped by wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" 
project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designer/jsf/nbproject/project.xml,v  <--  project.xml
new revision: 1.11; previous revision: 1.10
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designer\markup\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designer/markup/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/designtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.10; previous revision: 1.9
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\rave\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/designtime/rave/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\designtime\rave\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/designtime/rave/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\insync\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/insync/nbproject/project.xml,v  <--  project.xml
new revision: 1.13; previous revision: 1.12
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime-1.1\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime-1.1/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\runtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/jsfsupport/runtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.2; previous revision: 1.1
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\jsfsupport\runtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/jsfsupport/runtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\navigation\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -
z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies 
to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/navigation/nbproject/project.xml,v  <--  project.xml
new revision: 1.11; previous revision: 1.10
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\project\importpage\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/project/importpage/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\api\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/propertyeditors/api/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\api\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/propertyeditors/api/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\propertyeditors\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/propertyeditors/nbproject/project.xml,v  <--  project.xml
new revision: 1.10; previous revision: 1.9
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\el-ri-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/el-ri-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\jsf-portlet\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/jsf-portlet/nbproject/project.xml,v  <--  project.xml
new revision: 1.3; previous revision: 1.2
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\jsf-ri-1.2\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/ravelibs/jsf-ri-1.2/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\designtime\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/webui/designtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\runtime\library\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.properties;
/cvs/visualweb/webui/runtime/library/nbproject/project.properties,v  <--  project.properties
new revision: 1.7; previous revision: 1.6
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\webui\runtime\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -
q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the 
dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars 
are wrapped by wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" 
project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/webui/runtime/nbproject/project.xml,v  <--  project.xml
new revision: 1.4; previous revision: 1.3
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\woodstock\components\nbproject: "C:\Program 
Files\TortoiseCVS\cvs.exe" -q -z6 commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved 
the \n\nAdjusted the dependencies to the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-
api.jar\n\nThese jars are wrapped by wrapped by the following library wrapper 
modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/woodstock/components/nbproject/project.xml,v  <--  project.xml
new revision: 1.12; previous revision: 1.11
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\xhtml\nbproject: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" project.xml
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Checking in project.xml;
/cvs/visualweb/xhtml/nbproject/project.xml,v  <--  project.xml
new revision: 1.5; previous revision: 1.4
done

Success, CVS operation completed

In C:\work\sun\netbeans\cvsworkspaces\trunk\visualweb\ravelibs\javaee-5: "C:\Program Files\TortoiseCVS\cvs.exe" -q -z6 
commit -m "Bug Fix# 105328 More copies of javaee.jar or its components\n\nRemoved the \n\nAdjusted the dependencies to 
the jars:\n\nweb/external/servlet2.5-jsp2.1-api.jar\nweb/external/jsf-1.2/jsf-api.jar\n\nThese jars are wrapped by 
wrapped by the following library wrapper modules:\n\nweb/libs/servletjspapi\nweb/libs/jsf-1_2" .cvsignore build.xml 
manifest.mf nbproject/.cvsignore nbproject/project.properties nbproject/project.xml release/.cvsignore 
release/modules/.cvsignore release/modules/ext/.cvsignore release/modules/ext/activation.jar 
release/modules/ext/javaee.jar release/modules/ext/mail.jar 
src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties
CVSROOT=:pserver:sandipchitale@cvs.netbeans.org:/cvs

Removing .cvsignore;
/cvs/visualweb/ravelibs/javaee-5/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.2
done
Removing build.xml;
/cvs/visualweb/ravelibs/javaee-5/build.xml,v  <--  build.xml
new revision: delete; previous revision: 1.2
done
Removing manifest.mf;
/cvs/visualweb/ravelibs/javaee-5/manifest.mf,v  <--  manifest.mf
new revision: delete; previous revision: 1.1
done
Removing nbproject/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/nbproject/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing nbproject/project.properties;
/cvs/visualweb/ravelibs/javaee-5/nbproject/project.properties,v  <--  project.properties
new revision: delete; previous revision: 1.1
done
Removing nbproject/project.xml;
/cvs/visualweb/ravelibs/javaee-5/nbproject/project.xml,v  <--  project.xml
new revision: delete; previous revision: 1.8
done
Removing release/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/modules/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/ext/.cvsignore;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/.cvsignore,v  <--  .cvsignore
new revision: delete; previous revision: 1.1
done
Removing release/modules/ext/activation.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/activation.jar,v  <--  activation.jar
new revision: delete; previous revision: 1.2
done
Removing release/modules/ext/javaee.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/javaee.jar,v  <--  javaee.jar
new revision: delete; previous revision: 1.2
done
Removing release/modules/ext/mail.jar;
/cvs/visualweb/ravelibs/javaee-5/release/modules/ext/mail.jar,v  <--  mail.jar
new revision: delete; previous revision: 1.2
done
Removing src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties;
/cvs/visualweb/ravelibs/javaee-5/src/org/netbeans/modules/visualweb/libs/javaee5/Bundle.properties,v  <--  
Bundle.properties
new revision: delete; previous revision: 1.1
done

Success, CVS operation completed

nbbuild/cluster.properties 

new revision: 1.362; previous revision: 1.361