You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Frédéric THOMAS (JIRA)" <ji...@apache.org> on 2012/11/09 12:32:12 UTC

[jira] [Created] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Frédéric THOMAS created FLEX-33247:
--------------------------------------

             Summary: Apache Flex Mavenized SDK Deployer
                 Key: FLEX-33247
                 URL: https://issues.apache.org/jira/browse/FLEX-33247
             Project: Apache Flex
          Issue Type: Sub-task
          Components: Installation & Packaging
            Reporter: Frédéric THOMAS


The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Erik de Bruin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13493962#comment-13493962 ] 

Erik de Bruin commented on FLEX-33247:
--------------------------------------

I've added this contribution to the Mavenizer utility in SVN (r1407430).
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Christofer Dutz (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13493952#comment-13493952 ] 

Christofer Dutz commented on FLEX-33247:
----------------------------------------

It is the missing link allowing to build Flex applications using Maven (Currently using Flexmojos and later on using maven-flex-plugin). Up till now there was no way to build an application using 4.8 with maven as noone made the artifacts available. A lot of companies are stuck with 4.5.1 as no 4.6 or 4.8 was ever oficially published and only one or two of the patched versions were published. Using the generator these users/companies will be able to update to newer or patched versions.

Also I would say, that the structure and the poms created could be a first step towards mavenizing the SDK itself (If this is even desired).
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Comment Edited] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Frédéric THOMAS (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13494014#comment-13494014 ] 

Frédéric THOMAS edited comment on FLEX-33247 at 11/9/12 2:13 PM:
-----------------------------------------------------------------

Erik, just because the generated jar will now start with flex-sdk-converter, the readme and the main class of the SDKDeployer have to be modified like that :

In the readme.txt : 
 was :Usage: java -cp flex-sdk-deployer-1.0.jar SDKDeployer "directory" "repositoryId" "url" "mvn".
 new:Usage: java -cp flex-sdk-converter-1.0.jar SDKDeployer "directory" "repositoryId" "url" "mvn".

In the main of the SDKDeployer : 
 was :System.out.println("\nUsage: java -cp flex-sdk-deployer-1.0.jar SDKDeployer \"directory\" \"repositoryId\" \"url\" \"mvn\"\n");
 new:System.out.println("\nUsage: java -cp flex-sdk-converter-1.0.jar SDKDeployer \"directory\" \"repositoryId\" \"url\" \"mvn\"\n");

Do you want me to do a patch or this is easy enough to do the modification manually ?
                
      was (Author: doublefx):
    Erik, just because the generated jar will now start with flex-sdk-converter, the readme and the main class of the SDKDeployer have to be modified like that :

In the readme.txt : 
 was :Usage: java -cp flex-sdk-deployer-1.0.jar SDKDeployer "directory" "repositoryId" "url" "mvn".
 new:Usage: java -cp flex-sdk-converter-1.0.jar SDKDeployer "directory" "repositoryId" "url" "mvn".

In the main of the SDKDeployer : 
 was :System.out.println("\nUsage: java -cp flex-sdk-deployer-1.0.jar SDKDeployer \"directory\" \"repositoryId\" \"url\" \"mvn\"\n");
 new:System.out.println("\nUsage: java -cp flex-sdk-converter-1.0.jar SDKDeployer \"directory\" \"repositoryId\" \"url\" \"mvn\"\n");
                  
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Frédéric THOMAS (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13493955#comment-13493955 ] 

Frédéric THOMAS commented on FLEX-33247:
----------------------------------------

The Flex SDK Converter (AKA SDKGenerator) generates a local directory structure containing all the maven artifacts ready to be used localy, which can be enough for an individual, the step further for a company is to be able to easily deploy it to its repository manager, that's where the SDKDeployer operates.

As it was not long time ago included in the Flex SDK Converter, I guess it should go to the same place (wherever it's been decided).
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Erik de Bruin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13493944#comment-13493944 ] 

Erik de Bruin commented on FLEX-33247:
--------------------------------------

Given the newly added Mavenizer, where does this fit in the 'complete picture'? I'm a Noob where Maven is concerned, so please use little words ;-)

And also, if this is to be added to SVN, where would it 'go'?
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Erik de Bruin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13494017#comment-13494017 ] 

Erik de Bruin commented on FLEX-33247:
--------------------------------------

Fixed with r1407464.
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Frédéric THOMAS (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13494014#comment-13494014 ] 

Frédéric THOMAS commented on FLEX-33247:
----------------------------------------

Erik, just because the generated jar will now start with flex-sdk-converter, the readme and the main class of the SDKDeployer have to be modified like that :

In the readme.txt : 
 was :Usage: java -cp flex-sdk-deployer-1.0.jar SDKDeployer "directory" "repositoryId" "url" "mvn".
 new:Usage: java -cp flex-sdk-converter-1.0.jar SDKDeployer "directory" "repositoryId" "url" "mvn".

In the main of the SDKDeployer : 
 was :System.out.println("\nUsage: java -cp flex-sdk-deployer-1.0.jar SDKDeployer \"directory\" \"repositoryId\" \"url\" \"mvn\"\n");
 new:System.out.println("\nUsage: java -cp flex-sdk-converter-1.0.jar SDKDeployer \"directory\" \"repositoryId\" \"url\" \"mvn\"\n");
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Frédéric THOMAS (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13494015#comment-13494015 ] 

Frédéric THOMAS commented on FLEX-33247:
----------------------------------------

Do you me to do a patch ?
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Frédéric THOMAS (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Frédéric THOMAS updated FLEX-33247:
-----------------------------------

    Comment: was deleted

(was: Do you me to do a patch ?)
    
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Frédéric THOMAS (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Frédéric THOMAS updated FLEX-33247:
-----------------------------------

    Attachment: flex-sdk-deployer.zip

ICLA signed and sent to secretary@apache.org
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (FLEX-33247) Apache Flex Mavenized SDK Deployer

Posted by "Erik de Bruin (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLEX-33247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Erik de Bruin resolved FLEX-33247.
----------------------------------

    Resolution: Fixed
      Assignee: Erik de Bruin

The donation has been added and any reported initial issues have been resolved.
                
> Apache Flex Mavenized SDK Deployer
> ----------------------------------
>
>                 Key: FLEX-33247
>                 URL: https://issues.apache.org/jira/browse/FLEX-33247
>             Project: Apache Flex
>          Issue Type: Sub-task
>          Components: Installation & Packaging
>            Reporter: Frédéric THOMAS
>            Assignee: Erik de Bruin
>              Labels: features, maven
>         Attachments: flex-sdk-deployer.zip
>
>
> The SDKDeployer allows you to deploy any maven structured directory to a remote maven repository as soon as you've got the remote rights, it can takes as first argument the directory target of what has been generated by the SDKGenerator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira