You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-dev@ws.apache.org by "Kam K. Yee (JIRA)" <ji...@apache.org> on 2007/08/21 21:39:31 UTC

[jira] Created: (MUSE-267) Generated build.xml packages duplicate copies of custom capability classes in the lib jar

Generated build.xml packages duplicate copies of custom capability classes in the lib jar
-----------------------------------------------------------------------------------------

                 Key: MUSE-267
                 URL: https://issues.apache.org/jira/browse/MUSE-267
             Project: Muse
          Issue Type: Bug
          Components: Tooling - Code Generation
    Affects Versions: 2.2.0
         Environment: ant 1.6.5
muse 2.2.0
            Reporter: Kam K. Yee
            Assignee: Dan Jemiolo
            Priority: Minor


A build.xml if generated by the wsdl2java code generator.

This build.xml causes duplicate copies of the custom capability classes (and Activator class in the case of OSGi) to be packaged in the ABC.jar library ("ABC" is the name of the directory where the files and artifacts used are under;  the directory from where the code generator derives the names for ABC.war and ABC.jar)

The reason seems to be that the jar instruction uses "**/*.class" instead of "*/*.class"

            <fileset dir="${JAVA_DEST_DIR}">
                <include name="**/*.class"/>
            </fileset>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org


[jira] Commented: (MUSE-267) Generated build.xml packages duplicate copies of custom capability classes in the lib jar

Posted by "Dan Jemiolo (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MUSE-267?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524373 ] 

Dan Jemiolo commented on MUSE-267:
----------------------------------

Without the "**", the JAR command would only include .class files found in the first level of subdirectories, not all of the Java classes in the /JavaClasses directory tree. Does this happen on all OS platforms?

> Generated build.xml packages duplicate copies of custom capability classes in the lib jar
> -----------------------------------------------------------------------------------------
>
>                 Key: MUSE-267
>                 URL: https://issues.apache.org/jira/browse/MUSE-267
>             Project: Muse
>          Issue Type: Bug
>          Components: Tooling - Code Generation
>    Affects Versions: 2.2.0
>         Environment: ant 1.6.5
> muse 2.2.0
>            Reporter: Kam K. Yee
>            Assignee: Dan Jemiolo
>            Priority: Minor
>             Fix For: 2.3.0
>
>
> A build.xml if generated by the wsdl2java code generator.
> This build.xml causes duplicate copies of the custom capability classes (and Activator class in the case of OSGi) to be packaged in the ABC.jar library ("ABC" is the name of the directory where the files and artifacts used are under;  the directory from where the code generator derives the names for ABC.war and ABC.jar)
> The reason seems to be that the jar instruction uses "**/*.class" instead of "*/*.class"
>             <fileset dir="${JAVA_DEST_DIR}">
>                 <include name="**/*.class"/>
>             </fileset>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org


[jira] Updated: (MUSE-267) Generated build.xml packages duplicate copies of custom capability classes in the lib jar

Posted by "Dan Jemiolo (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MUSE-267?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Jemiolo updated MUSE-267:
-----------------------------

    Fix Version/s: 2.3.0

> Generated build.xml packages duplicate copies of custom capability classes in the lib jar
> -----------------------------------------------------------------------------------------
>
>                 Key: MUSE-267
>                 URL: https://issues.apache.org/jira/browse/MUSE-267
>             Project: Muse
>          Issue Type: Bug
>          Components: Tooling - Code Generation
>    Affects Versions: 2.2.0
>         Environment: ant 1.6.5
> muse 2.2.0
>            Reporter: Kam K. Yee
>            Assignee: Dan Jemiolo
>            Priority: Minor
>             Fix For: 2.3.0
>
>
> A build.xml if generated by the wsdl2java code generator.
> This build.xml causes duplicate copies of the custom capability classes (and Activator class in the case of OSGi) to be packaged in the ABC.jar library ("ABC" is the name of the directory where the files and artifacts used are under;  the directory from where the code generator derives the names for ABC.war and ABC.jar)
> The reason seems to be that the jar instruction uses "**/*.class" instead of "*/*.class"
>             <fileset dir="${JAVA_DEST_DIR}">
>                 <include name="**/*.class"/>
>             </fileset>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org