You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@synapse.apache.org by "Kasun Indrasiri (Created) (JIRA)" <ji...@apache.org> on 2011/12/09 19:50:41 UTC

[jira] [Created] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Duplicates of xlan-2.7.1.jar in the Synapse distribution 
---------------------------------------------------------

                 Key: SYNAPSE-825
                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
             Project: Synapse
          Issue Type: Bug
            Reporter: Kasun Indrasiri


This happens while extracting the synapse distribution created on /modules/distribution/target. 

inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Resolved] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Hiranya Jayathilaka (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hiranya Jayathilaka resolved SYNAPSE-825.
-----------------------------------------

       Resolution: Fixed
    Fix Version/s: 2.1

This has been properly fixed on trunk and branch. The groupId "xalan" is correct. We just needed to exclude it from a dependency set in dist.xml.
                
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>            Assignee: Kasun Indrasiri
>             Fix For: 2.1
>
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Commented] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Vijayaratha Vijayasingam (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13170796#comment-13170796 ] 

Vijayaratha Vijayasingam commented on SYNAPSE-825:
--------------------------------------------------

Hi, 
The root cause is we, use this xalan dependency in two places with different "groupId"..So, maven takes this as two different dependencies..
Please fix the Synapse 'root' pom as follows;

correct one;

 <dependency>
            <groupId>org.apache.xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>${xalan.version}</version>
        </dependency>

Previous one;

 <dependency>
            <groupId>xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>${xalan.version}</version>
        </dependency>
                
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Issue Comment Edited] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Vijayaratha Vijayasingam (Issue Comment Edited) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13170796#comment-13170796 ] 

Vijayaratha Vijayasingam edited comment on SYNAPSE-825 at 12/16/11 6:06 AM:
----------------------------------------------------------------------------

Hi, 
The root cause is, we use this xalan dependency in two places with different "groupId"..So, maven takes this as two different dependencies..
Please fix the Synapse 'root' pom as follows;

correct one;

 <dependency>
            <groupId>org.apache.xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>${xalan.version}</version>
        </dependency>

Previous one;

 <dependency>
            <groupId>xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>${xalan.version}</version>
        </dependency>
                
      was (Author: ratha):
    Hi, 
The root cause is we, use this xalan dependency in two places with different "groupId"..So, maven takes this as two different dependencies..
Please fix the Synapse 'root' pom as follows;

correct one;

 <dependency>
            <groupId>org.apache.xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>${xalan.version}</version>
        </dependency>

Previous one;

 <dependency>
            <groupId>xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>${xalan.version}</version>
        </dependency>
                  
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Assigned] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Hiranya Jayathilaka (Assigned) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hiranya Jayathilaka reassigned SYNAPSE-825:
-------------------------------------------

    Assignee: Hiranya Jayathilaka
    
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>            Assignee: Hiranya Jayathilaka
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Resolved] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Kasun Indrasiri (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kasun Indrasiri resolved SYNAPSE-825.
-------------------------------------

    Resolution: Fixed

Fixed on trunk and 2.1.
Thanks a lot for the contribution. 
                
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>            Assignee: Kasun Indrasiri
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Assigned] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Kasun Indrasiri (Assigned) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kasun Indrasiri reassigned SYNAPSE-825:
---------------------------------------

    Assignee: Kasun Indrasiri  (was: Hiranya Jayathilaka)
    
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>            Assignee: Kasun Indrasiri
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Reopened] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Kasun Indrasiri (Reopened) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kasun Indrasiri reopened SYNAPSE-825:
-------------------------------------


The fix causes test failures on XSLTMediatorTest and ProxyServiceTest. Reverting it on trunk and 2.1. 
                
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>            Assignee: Kasun Indrasiri
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Updated] (SYNAPSE-825) Duplicates of xlan-2.7.1.jar in the Synapse distribution

Posted by "Vijayaratha Vijayasingam (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vijayaratha Vijayasingam updated SYNAPSE-825:
---------------------------------------------

    Attachment: pom.xml

attached the synapse root pom(with the corrected xalan dependency)
                
> Duplicates of xlan-2.7.1.jar in the Synapse distribution 
> ---------------------------------------------------------
>
>                 Key: SYNAPSE-825
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-825
>             Project: Synapse
>          Issue Type: Bug
>            Reporter: Kasun Indrasiri
>         Attachments: pom.xml
>
>
> This happens while extracting the synapse distribution created on /modules/distribution/target. 
> inflating: synapse-2.1.0-SNAPSHOT/lib/xmlsec-1.4.5.jar  
> replace synapse-2.1.0-SNAPSHOT/lib/xalan-2.7.1.jar? [y]es, [n]o, [A]ll, [N]one, [r]ename: error:  invalid response [{ENTER}]

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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