1 2 Previous Next 15 Replies Latest reply on Feb 5, 2010 5:37 AM by maxandersen

    org.jboss.tools.jst.web.xml

    mmarques
      I started a new project with JBoss Tools, and this file was generated.
      It contains a lot of references to my file system (C:\...), and I was expecting problems sharing the project with my team, but I got surprised when they could run the project even without this file.

      I want to know which functionalities are enabled by this configuration, so I can correct the references on this file (and test if the references I've changed are working).
        • 1. Re: org.jboss.tools.jst.web.xml
          dgolovin

          What version of JBoss Tools are you using? This file is not required since https://jira.jboss.org/jira/browse/JBIDE-1714 was fixed.

          • 2. Re: org.jboss.tools.jst.web.xml
            mmarques

            3.1.0.v200910281724M-H247-M4

             

            Why this file is still generated then? Backward compatibility issues?

            • 3. Re: org.jboss.tools.jst.web.xml
              dgolovin

              It could be, but let me know your exact steps to replicate that and we'll see.

              • 4. Re: org.jboss.tools.jst.web.xml
                mmarques

                Actually it's a Seam project, so I follow the steps indicated in

                 

                http://docs.jboss.org/tools/3.0.1.GA/en/seam/html_single/index.html

                 

                for JBoss 4.2 and Seam 2.2 runtimes. When I made it, was my first time using JBoss/Seam Tools so I keep the defaults when possible.

                • 5. Re: org.jboss.tools.jst.web.xml
                  dgolovin

                  Thanks,

                  I'll get back to you as soon as I have details.

                  The solution could be to mark this file as ignored by SCM you are using, but I want to be sure it will work.

                  • 6. Re: org.jboss.tools.jst.web.xml
                    dgolovin

                    I guess you added richfaces as custom capabilities to Seam project. That triggers update for org.jboss.tools.jst.web.xml and adds a lot of libs with absolute path.

                     

                    My usecase to reproduce that below.

                     

                    1. EXECUTE: Create any Seam project in WAR deployment configuration

                    2. ASSERT: Open .settings/org.jboss.tools.jst.web.xml file and check there are no absolute paths

                    3. EXECUTE: Add Richfaces Custom Capabilities

                    4. ASSERT: There are still no absolute paths in .settings/org.jboss.tools.jst.web.xml

                     


                    On second step .settings/org.jboss.tools.jst.web.xml contains no absolute paths:

                     

                    {code:xml}<?xml version="1.0" encoding="UTF-8"?>
                    <file-systems application-name="seam1" model-entity="FileSystems" VERSION="2.0.0" workspace-home="./WebContent/WEB-INF">

                         <file-system model-entity="FileSystemFolder" location="%workspace.home%" NAME="WEB-INF" />

                         <file-system model-entity="FileSystemFolder" info="Content-Type=Web" location="%workspace.home%/.." NAME="WEB-ROOT" />

                         <file-system model-entity="FileSystemFolder" location="%workspace.home%/../../src" NAME="src" />

                         <file-system model-entity="FileSystemFolder" location="%workspace.home%/lib" NAME="lib" />

                         <file-system model-entity="FileSystemFolder" location="%workspace.home%/classes" NAME="classes" />

                         <web model-entity="JstWeb" model-path="/web.xml" SERVLET_VERSION="2.4">

                              <module model-entity="WebJSFModule" model-path="/faces-config.xml" root="WEB-ROOT" src="src" URI="/WEB-INF/faces-config.xml" />

                         </web>

                    </file-systems>{code}

                     

                    but on fourth step:

                    {code:xml}<?xml version="1.0" encoding="UTF-8"?>

                    <file-systems VERSION="2.0.0" application-name="seam3"
                    model-entity="FileSystems" workspace-home="./WebContent/WEB-INF">

                    <file-system NAME="WEB-INF" location="%workspace.home%" model-entity="FileSystemFolder"/>

                    <file-system NAME="WEB-ROOT" info="Content-Type=Web"
                      location="%workspace.home%/.." model-entity="FileSystemFolder"/>

                    <file-system NAME="lib" location="%workspace.home%/lib" model-entity="FileSystemFolder"/>

                    <file-system NAME="classes" location="%workspace.home%/classes" model-entity="FileSystemFolder"/>

                    <file-system NAME="lib-resources.jar"
                      location="/usr/lib/jvm/java-6-openjdk/jre/lib/resources.jar" model-entity="FileSystemJar"/>

                    ...

                    <file-system NAME="lib-policy.jar"
                      location="/home/eskimo/Java/jboss-4.2.2.GA/client/policy.jar" model-entity="FileSystemJar"/>

                    ...

                    <file-system NAME="lib-antlr-runtime.jar"
                      location="/home/eskimo/workspace-3.1.0.M4/seam3/WebContent/WEB-INF/lib/antlr-runtime.jar" model-entity="FileSystemJar"/>

                    ...
                    <file-system NAME="src" location="%workspace.home%/../../src/main" model-entity="FileSystemFolder"/>
                    <file-system NAME="src-1" location="%workspace.home%/../../src/hot" model-entity="FileSystemFolder"/>
                    <file-system NAME="seam3" location="%eclipse.project%" model-entity="FileSystemFolder"/>
                    <file-system NAME="lib-richfaces-api-3.3.2.SR1.jar" info="hidden=yes"

                      location="%workspace.home%/lib/richfaces-api-3.3.2.SR1.jar" model-entity="FileSystemJar"/>

                    <file-system NAME="lib-richfaces-impl-3.3.2.SR1.jar" info="hidden=yes"
                      location="%workspace.home%/lib/richfaces-impl-3.3.2.SR1.jar" model-entity="FileSystemJar"/>

                    <file-system NAME="lib-richfaces-ui-3.3.2.SR1.jar" info="hidden=yes"
                      location="%workspace.home%/lib/richfaces-ui-3.3.2.SR1.jar" model-entity="FileSystemJar"/>

                    <web SERVLET_VERSION="2.4" model-entity="JstWeb" model-path="/web.xml">

                      <module URI="/WEB-INF/faces-config.xml" model-entity="WebJSFModule"
                       model-path="/faces-config.xml" src="src" web-root="WEB-ROOT"/>

                    </web>

                    </file-systems>{code}

                     

                    It looks like all jars from jdk, server and web libraries classpath containers were added to org.jboss.tools.jst.web.xml.

                    • 7. Re: org.jboss.tools.jst.web.xml
                      dgolovin

                      I've reproduced this problem for tree different builds: most recent from trunk, M4 and CR1.

                      According to https://jira.jboss.org/jira/browse/JBIDE-1714 Do not keep config file .settings/org.jboss.tools.jst.web.xml when its content can be restored by reading other config files it shouldn't be created at all.

                       

                      I've created new issue to track this problem https://jira.jboss.org/jira/browse/JBIDE-5657.

                      • 8. Re: org.jboss.tools.jst.web.xml
                        mmarques

                        Actually I created the Seam project in EAR deployment configuration.

                        It added a lot more absolute paths. I think you can figure out which capabitilies they refers to.


                        <?xml version="1.0" encoding="UTF-8"?>
                        <file-systems VERSION="2.0.0" application-name="intranet-t4f"
                         model-entity="FileSystems" workspace-home="./WebContent/WEB-INF">
                         <file-system NAME="WEB-INF" location="%workspace.home%" model-entity="FileSystemFolder"/>
                         <file-system NAME="WEB-ROOT" info="Content-Type=Web"
                          location="%workspace.home%/.." model-entity="FileSystemFolder"/>
                         <file-system NAME="src" location="%workspace.home%/../../src" model-entity="FileSystemFolder"/>
                         <file-system NAME="lib" location="%workspace.home%/lib" model-entity="FileSystemFolder"/>
                         <file-system NAME="classes" location="%workspace.home%/classes" model-entity="FileSystemFolder"/>
                         <file-system NAME="intranet-t4f" location="%eclipse.project%" model-entity="FileSystemFolder"/>
                         <file-system NAME="lib-resources.jar"
                          location="C:\Arquivos de programas\Java\jre6\lib\resources.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-dnsns.jar"
                          location="C:\Arquivos de programas\Java\jre6\lib\ext\dnsns.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-localedata.jar"
                          location="C:\Arquivos de programas\Java\jre6\lib\ext\localedata.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-sunjce_provider.jar"
                          location="C:\Arquivos de programas\Java\jre6\lib\ext\sunjce_provider.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-sunmscapi.jar"
                          location="C:\Arquivos de programas\Java\jre6\lib\ext\sunmscapi.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-sunpkcs11.jar"
                          location="C:\Arquivos de programas\Java\jre6\lib\ext\sunpkcs11.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-activation.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\activation.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-antlr.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\antlr.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-avalon-framework.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\avalon-framework.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-commons-codec.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\commons-codec.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-commons-httpclient.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\commons-httpclient.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-commons-logging.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\commons-logging.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-concurrent.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\concurrent.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-ejb3-persistence.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\ejb3-persistence.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-FastInfoset.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\FastInfoset.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-getopt.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\getopt.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-hibernate-annotations.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\hibernate-annotations.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-hibernate-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\hibernate-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jacorb.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jacorb.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-javassist.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\javassist.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jaxb-api.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxb-api.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jaxb-impl.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxb-impl.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jaxb-xjc.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxb-xjc.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-stax-ex.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\stax-ex.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-streambuffer.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\streambuffer.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jaxws-rt.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxws-rt.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jaxws-tools.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxws-tools.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-annotations-ejb3.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-annotations-ejb3.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-aop-jdk50-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-aop-jdk50-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-aspect-jdk50-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-aspect-jdk50-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-common-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-common-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-deployment.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-deployment.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-ejb3-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-ejb3-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-ejb3x.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-ejb3x.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-iiop-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-iiop-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-j2ee.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-j2ee.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossws-spi.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-spi.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossws-common.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-common.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossws-framework.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-framework.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jaxrpc.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jaxrpc.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jaxws.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jaxws.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-saaj.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-saaj.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-mail.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\mail.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-remoting.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-remoting.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-xml-binding.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-xml-binding.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-policy.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\policy.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-stax-api.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\stax-api.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-wsdl4j.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\wsdl4j.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jaxws-ext.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jaxws-ext.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jsr77-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jsr77-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-serialization.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-serialization.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-srp-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-srp-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-system-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-system-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-transaction-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-transaction-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossall-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossall-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbosscx-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbosscx-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossha-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossha-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossjmx-ant.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossjmx-ant.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossmq-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossmq-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbosssx-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbosssx-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossws-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossws-jboss42.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-jboss42.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jettison.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jettison.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jmx-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jmx-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jmx-invoker-adaptor-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jmx-invoker-adaptor-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jnp-client.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jnp-client.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-log4j.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\log4j.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-logkit.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\logkit.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-scout.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\scout.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-servlet-api.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\servlet-api.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-trove.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\trove.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-wstx.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\wstx.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-xmlsec.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\client\xmlsec.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-common.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\jboss-common.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jmx.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\jboss-jmx.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-system.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\jboss-system.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-log4j-boot.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\log4j-boot.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-autonumber-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\autonumber-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-bcel.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bcel.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-bindingservice-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bindingservice-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-bsf.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bsf.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-bsh-deployer.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bsh-deployer.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-bsh.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bsh.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-cglib.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\cglib.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-commons-collections.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\commons-collections.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-dom4j.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\dom4j.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-el-api.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\el-api.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-hibernate-entitymanager.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hibernate-entitymanager.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-hibernate3.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hibernate3.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-hsqldb-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hsqldb-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-hsqldb.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hsqldb.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jaxen.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jaxen.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-common-jdbc-wrapper.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-common-jdbc-wrapper.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-hibernate.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-hibernate.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-iiop.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-iiop.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jca.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-jca.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jsr77.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-jsr77.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-jsr88.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-jsr88.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-management.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-management.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-monitoring.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-monitoring.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-remoting-int.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-remoting-int.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-srp.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-srp.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-transaction.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-transaction.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-vfs.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-vfs.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossjta-integration.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossjta-integration.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossjta.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossjta.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossmq.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossmq.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbosssx.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbosssx.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbossts-common.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossts-common.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jmx-adaptor-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jmx-adaptor-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jnpserver.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jnpserver.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-joesnmp.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\joesnmp.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jsp-api.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jsp-api.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-log4j-snmp-appender.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\log4j-snmp-appender.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-mail-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\mail-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-mysql-connector-java-5.1.10-bin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\mysql-connector-java-5.1.10-bin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-properties-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\properties-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-quartz.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\quartz.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-scheduler-plugin-example.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\scheduler-plugin-example.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-scheduler-plugin.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\scheduler-plugin.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-xmlentitymgr.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\xmlentitymgr.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-faces.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\jsf-libs\jboss-faces.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jsf-api.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\jsf-libs\jsf-api.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jsf-impl.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\jsf-libs\jsf-impl.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-aop-jdk50.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\jboss-aop-jdk50.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-aspect-library-jdk50.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\jboss-aspect-library-jdk50.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jrockit-pluggable-instrumentor.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\jrockit-pluggable-instrumentor.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-pluggable-instrumentor.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\pluggable-instrumentor.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-ejb3.jar"
                          location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\ejb3.deployer\jboss-ejb3.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-commons-digester.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\commons-digester.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-debug.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-debug.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-excel.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-excel.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-ioc.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-ioc.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-mail.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-mail.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-pdf.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-pdf.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-remoting.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-remoting.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam-ui.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-ui.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jsf-facelets.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jsf-facelets.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jxl.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jxl.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-richfaces-impl.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\richfaces-impl.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-richfaces-ui.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\richfaces-ui.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-seam.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\jboss-seam.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-antlr-runtime.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\antlr-runtime.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-commons-beanutils.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\commons-beanutils.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-drools-compiler.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\drools-compiler.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-drools-core.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\drools-core.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jboss-el.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\jboss-el.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-jbpm-jpdl.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\jbpm-jpdl.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-mvel2.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\mvel2.jar" model-entity="FileSystemJar"/>
                         <file-system NAME="lib-richfaces-api.jar"
                          location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\richfaces-api.jar" model-entity="FileSystemJar"/>
                         <web SERVLET_VERSION="2.4" model-entity="JstWeb" model-path="/web.xml">
                          <module URI="/WEB-INF/faces-config.xml" model-entity="WebJSFModule"
                           model-path="/faces-config.xml" src="src" web-root="WEB-ROOT"/>
                         </web>
                        </file-systems>
                        

                        • 9. Re: org.jboss.tools.jst.web.xml
                          dgolovin
                          That's right, there are a lot more jars in it i just truncated them to save some space.
                          • 10. Re: org.jboss.tools.jst.web.xml
                            dgolovin
                            Issue https://jira.jboss.org/jira/browse/JBIDE-5657 was fixed in trunk and workaround is to delete this file or configure SCM plugin to ignore it.
                            • 11. Re: org.jboss.tools.jst.web.xml
                              asookazian

                              FYI: I reproduced this as well.

                               

                              http://seamframework.org/Community/ErrorWithJSF2RIAndSeam211GAApp

                               

                              Are there any other unnecessary files in .settings folder that we should delete?

                              • 12. Re: org.jboss.tools.jst.web.xml
                                dgolovin
                                Nope IFAIK.
                                • 13. Re: org.jboss.tools.jst.web.xml
                                  asookazian

                                  perpetrator (jboss-seam-2.0.1.jar) was here:

                                   

                                  C:\Documents and Settings\asookazian\workspace\CIS_1.5  new\.metadata\.plugins\org.jboss.ide.eclipse.as.core\JBoss_4.2_Runtime_Server\deploy\com.echo.cis.web.war\WEB-INF\lib

                                   

                                  I'm assuming it's safe to delete everything in the deploy directory?
                                  • 14. Re: org.jboss.tools.jst.web.xml
                                    dgolovin

                                    It depends.

                                    It is not safe for your application if JBossAS is running.

                                    It should be safe for JBossTools, because it will redeploy missing files form eclipse workspace, but I cannot say for sure, unfortunately.

                                    1 2 Previous Next