Maven plugin for flex

Hello All,
I have developed a Maven Plugin for Flex , hope someone will find it useful.

flexmojos is fine, I'm working with a client using it in their automated deployments that uses all the tech you listed and then some. It takes a little bit to get configured but it does the job quite nice.

Similar Messages

  • Eclipse plugin for flex

    Hi,
    Is there any Flex plugin for Eclipse which has features like
    syntax coloring, auto-suggestion and compilation for
    actionscript and mxml. I tried using ASDT but it isn't of much
    help. It supports only syntax coloring. Writing action script code
    in plain editor is sometimes a very big pain.
    Thanks,
    Ashish Abrol

    You can download the Eclipse plugin for Flex in the Adobe
    Website. Then in Eclipse you have to configure the editor's section
    and select the mxml and as extensions to be edited with the Flex
    plugin, that way you will have syntax coloring and
    auto-suggestion

  • How to configure wls-maven-plugin for support remote actions ?

    hi,
    currently I installed weblogic 12.1.1.0 .
    also using wls-maven-plugin for deployment .
    in documentation specified that
    middlewareHome ,weblogicHome ,domainHome has defaults values .
    so when you are not set them explicitly plugin use defaults values
    [http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585|http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585]
    whats happened if I want to do remote deployment meaning packaging my artifacts in machine A and deploy it to a server on target machine B .
    some limitations
    1. I cant use share folder between A and B
    2. Installation location on B is not on the default path - "D:\weblogic\wlserver_12.1"
    how plugin should know those require values on machine B , where the execution of the maven goal take place on machine A?
    does any body knows if the plugin support this case of remote deployment or does this plugin support only local deployment ?
    what is the best way to do remote action like start-server , stop-server, deploy , undeploy with weblogic app-server
    Thanks
    Nir
    Edited by: lukass77 on Nov 13, 2012 3:36 PM

    hi,
    currently I installed weblogic 12.1.1.0 .
    also using wls-maven-plugin for deployment .
    in documentation specified that
    middlewareHome ,weblogicHome ,domainHome has defaults values .
    so when you are not set them explicitly plugin use defaults values
    [http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585|http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585]
    whats happened if I want to do remote deployment meaning packaging my artifacts in machine A and deploy it to a server on target machine B .
    some limitations
    1. I cant use share folder between A and B
    2. Installation location on B is not on the default path - "D:\weblogic\wlserver_12.1"
    how plugin should know those require values on machine B , where the execution of the maven goal take place on machine A?
    does any body knows if the plugin support this case of remote deployment or does this plugin support only local deployment ?
    what is the best way to do remote action like start-server , stop-server, deploy , undeploy with weblogic app-server
    Thanks
    Nir
    Edited by: lukass77 on Nov 13, 2012 3:36 PM

  • How to create a plugin for Flex Builder

    Does anyone know where the documentation is located for developing plug-ins for Flex Builder?  I know you can create plugins for Eclipse, but I haven't seen how you can import them into Flex builder without having it in the Eclilpse Marketplace.

    Hi,
    There are some plugin examples in osmf source code on sourceforge. You can start from an existing plugin to learn the basics - it will be a little easier than starting from scratch.
    What should your plugin do?

  • Maven plugin for managing CQ5 packages

    Hi,
    Here's some new documentation that explains how to use the Content Package Maven plugin. You can package and install content from your maven build...for example, in your POM, add goals for package creation and installation to automatically deploy the OSGi bundle that was built. You can perform other package management tasks on remote servers, like rebuild packages,  and list, uninstall, and remove them.
    http://dev.day.com/docs/en/cq/current/core/how_to/how_to_use_the_vlttool/vlt-mavenplugin.h tml
    scott

    Thank you so much for prompt reply!!
    I am new to this so I am bit confused.
    Would it be possible for you to check my pom file? And let me know if the configuration looks Ok?
    Command used: mvn clean package content-package:install -P felix-deploy
    Setting.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
        <pluginGroups>
            <pluginGroup>content-package-maven-plugin</pluginGroup>
        </pluginGroups>
        <proxies />
        <servers>
            <server>
                <id>snapshots</id>
                <username>cqadmin</username>
                <password>internal1</password>
            </server>
            <server>
                <id>internal</id>
                <username>cqadmin</username>
                <password>internal1</password>
            </server>
        </servers>
        <mirrors>
            <mirror>
                <id>internal</id>
                <url>http://localhost:9090/archiva/repository/internal/</url>
                <mirrorOf>*</mirrorOf>
            </mirror>
        </mirrors>
        <profiles>
            <profile>
                <id>adobe-public</id>
                <activation>
                    <activeByDefault>false</activeByDefault>
                </activation>
                <properties>
                    <releaseRepository-Id>adobe-public-releases</releaseRepository-Id>
                    <releaseRepository-Name>Adobe Public Releases</releaseRepository-Name>
                    <releaseRepository-URL>
                        http://repo.adobe.com/nexus/content/groups/public/com/day/cq/wcm/cq-content/</releaseRepository-URL>
                </properties>
                <repositories>
                    <repository>
                        <id>adobe-public-releases</id>
                        <name>Adobe Public Repository</name>
                        <url>http://repo.adobe.com/nexus/content/groups/public</url>
                        <releases>
                            <enabled>true</enabled>
                            <updatePolicy>never</updatePolicy>
                        </releases>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                    </repository>
                </repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <id>adobe-public-releases</id>
                        <name>Adobe Public Repository</name>
                        <url> http://repo.adobe.com/nexus/content/groups/public/com/day/cq/wcm/cq-content/</url>
                        <releases>
                            <enabled>true</enabled>
                            <updatePolicy>never</updatePolicy>
                        </releases>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                    </pluginRepository>
                </pluginRepositories>
            </profile>
        </profiles>
    </settings>
    POM.xml
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>common</groupId>
        <artifactId>common-ui</artifactId>
        <version>0.0.1</version>
        <name>common-ui</name>
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <!-- timestamp property used when filtering files from META-INF path -->
            <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss.SZ</maven.build.timestamp.format>
            <timestamp>${maven.build.timestamp}</timestamp>
            <cq5.package.group>Common UI</cq5.package.group>
            <cq5.app.name>common-ui</cq5.app.name>
        </properties>
        <profiles>
            <profile>
                <id>felix-deploy</id>
                <build>
                    <plugins>
                        <plugin>
                            <groupId>com.day.jcr.vault</groupId>
                            <artifactId>content-package-maven-plugin</artifactId>
                            <version>0.0.19</version>
                            <configuration>
                                <name>common-ui</name>
                                <failOnError>true</failOnError>
                                <packageFile>
                                    ${project.artifactId}-${project.version}-cq5-package.zip
                                </packageFile>
                                <targetURL>http://localhost:4502/crx/packmgr/service.jsp</targetURL>
                            </configuration>
                            <executions>
                                <execution>
                                    <goals>
                                        <goal>package</goal>
                                    </goals>
                                </execution>
                            </executions>
                        </plugin>
                    </plugins>
                </build>
            </profile>
        </profiles>
        <build>
            <plugins>
                <plugin>
                    <!-- Assembly plugin used to make cq5 package zip file -->
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.3</version>
                    <configuration>
                        <builtContentDirectory>jcr_root</builtContentDirectory>
                        <targetURL>http://localhost:4502/crx/packmgr/service.jsp</targetURL>
                    </configuration>
                    <executions>
                        <execution>
                            <id>make-assembly</id>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
            <resources>
                <resource>
                    <directory>src/main/content</directory>
                    <includes>
                        <include>**/*.*</include>
                    </includes>
                </resource>
            </resources>
        </build>
    </project>
    ERROR:
    C:\workspace-aaa-eris\wms-cms-common-ui>mvn clean package content-package:install -P felix-deploy
    [INFO] Scanning for projects...
    [WARNING] Failed to retrieve plugin descriptor for com.day.jcr.vault:content-package-maven-plugin:0.0.19: Invalid plugin descriptor for com.day.jcr.vault:content-package-maven-plug
    in:0.0.19  (C:\Users\gxoshre\.m2\repository\com\day\jcr\vault\content-package-maven-plugin\0.0.19\co ntent-package-maven-plugin-0.0.19.jar), Plugin's descriptor contains the wrong ve
    rsion: 0.0.16
    Downloading: http://localhost:9090/archiva/repository/internal/org/codehaus/mojo/maven-metadata.xml
    Downloading: http://localhost:9090/archiva/repository/internal/content-package-maven-plugin/maven-metad ata.xml
    Downloading: http://localhost:9090/archiva/repository/internal/org/apache/maven/plugins/maven-metadata. xml
    Downloaded: http://localhost:9090/archiva/repository/internal/org/apache/maven/plugins/maven-metadata. xml (11 KB at 0.7 KB/sec)
    Downloaded: http://localhost:9090/archiva/repository/internal/org/codehaus/mojo/maven-metadata.xml (21 KB at 1.4 KB/sec)
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 15.148s
    [INFO] Finished at: Wed Oct 03 12:34:25 MST 2012
    [INFO] Final Memory: 4M/15M
    [INFO] ------------------------------------------------------------------------
    [ERROR] No plugin found for prefix 'content-package' in the current project and in the plugin groups [content-package-maven-plugin, org.apache.maven.plugins, org.codehaus.mojo] ava
    ilable from the repositories [local (C:\Users\gxoshre\.m2\repository), internal (http://localhost:9090/archiva/repository/internal/)] -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
    C:\workspace-aaa-eris\wms-cms-common-ui

  • Maven plugins for SDA / SCA creation

    Hi all,
    we are currently evaluating in moving our build from ANT to Maven. We therefore would like to know, if there are any maven plugins out there to create SDA and/or SCA files.
    Additionally we are also interested in automatic deployment to Netweaver, so in general any pointers are very very welcome.
    Greetings
    -Sascha-

    Hi,
    pls. use the nwpacktool as I suggested in the other thread.
    See SAP note: 1223957
    regards,
    Jozsef

  • Flash Builder 4.0 Standalone VS Plugin for Flex and Java Development

    Hello,
    I have recently installed Flash Builder 4.0 for a personal project. The server side of the project was going to be developed in ASP.NET but at the last minute I decided to change it to Java. However now I am wondering if it would be better to uninstall and install Eclipse with the Flash Builder 4.0 plugin.
    I am not really asking which one is better, I guess both are pretty much the same (though I wonder what features are not included in the Eclipse plugin), however I want to know which one would let me create an easier workflow model for the development now that I am going to use Java as well.
    I am open to other suggestions as well.
    Thanks,
    Jorge

    Hey guys, I'm brand new to this as well and you probably don't need an answer now but I found this anyway:
    Flex Builder and Flash Builder both function as Plug-ins to Eclipse, though each also comes in a "stand-alone" flavor - which is still eclipse, but with a lot of the Eclipse functionality torn out for a smaller footprint.
    http://stackoverflow.com/questions/1761919/flex-php-flash-builder-4-vs-eclipse
    All the best!

  • Maven plugin for Deploy/undeploy tasks

    Hi all,
    Have anybody an experience in automating the deployment/undeployment tasks using apache maven 1?
    If so, give me some examples and plugins links please!
    Thanks in advance.

    Thanks. I had seen the link before I post this. The page doesn't really answer my question though and is far from being complete. For instance, it won't tell you anything about plugin's behavior (e.g.: if you configure it in Parent project, would it deploy all modules defined in its POM or not?).
    Anyway, I finally found a post somewhere else that helped me to make some real progress.
    http://maven.40175.n5.nabble.com/WebLogic-Deployment-ok-from-child-fails-from-parent-td91659.html

  • FDS plugin for flex builder 3

    Can anyone tell me how to get the "Create applicaton from
    database" working?
    I finally found the correct WTP plugin (ie FDS) and
    downloaded it:
    http://www.adobe.com/cfusion/exchange/index.cfm?searchfield=FDS&search_exchange=15&search_ category=-1&search_license=&search_rating=&search_platform=0&search_pubdate=&num=25&startn um=1&event=search&sticky=true&sort=0&Submit=
    But now I can't find anymore information about installing it,
    etc. I need to create an application that links to a a SQL db
    server.
    Please HELP!
    Thanks.

    You don't need BEA Workshop or IBM Rational Software. I think
    it means that you can install Flex Builder plug-in on top of
    eclipse/BEA Workshop/IBM Rational Software.
    If you choose Flex Builder standalone, then you don't even
    need eclipse. If you choose Flex Builder Plug in then you need
    eclipse.
    HTH,
    Gaurav

  • Cannot find maven plugin

    I'm trying to install the maven plugin for jdeveloper 10.1.3.4. for some reason, all the sites on the apache sites for the plugin are down.
    http://maven.apache.org/maven-1.x/plugins/jdeveloper/downloads.html
    Can anyone provide me with a valid link for download?
    Many thanks,
    Wes

    Wes,
    its an Apache plugin and I suggest you ping them for another download link. On the Apache site you see help listst that you can send the request to
    Frank

  • Maven plugin

    hi,
    while mvn compile following error is ocuring.can anyone give me any clue.
    [INFO] The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exist or no valid version could be found
    Thanks&Regards
    Nirmal kumar Ghosh

    Andy-
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]This is dependant on the type of class mapping you are using:
    http://solarmetric.com/Software/Documentation/3.0.0RC1/docs/manual.html#ref_guide_mapping_classmapping
    In article <bl72ca$pjc$[email protected]>, Andy Jefferson wrote:
    Abe White wrote:
    I've put a version 1.0.0 of the Maven plugin for Kodo (works with Kodo
    v2.5.2) up on the maven plugins site (http://maven-plugins.sf.net).
    Thanks! I just realized I still have an email from you in my inbox...
    did I ever respond?No ... I thought you were ignoring me :-)
    Anyway, now that Kodo 3 is at RC status it should be
    stable enought o build Maven plugins for, if you're so inclined... :) If
    not I'm sure we'll get around to it eventually.I've actually got the "enhance" and "version" goals working for 3.0.
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Maven plugin v1.0.0

    I've put a version 1.0.0 of the Maven plugin for Kodo (works with Kodo
    v2.5.2) up on the maven plugins site (http://maven-plugins.sf.net).
    Andy

    Andy-
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]This is dependant on the type of class mapping you are using:
    http://solarmetric.com/Software/Documentation/3.0.0RC1/docs/manual.html#ref_guide_mapping_classmapping
    In article <bl72ca$pjc$[email protected]>, Andy Jefferson wrote:
    Abe White wrote:
    I've put a version 1.0.0 of the Maven plugin for Kodo (works with Kodo
    v2.5.2) up on the maven plugins site (http://maven-plugins.sf.net).
    Thanks! I just realized I still have an email from you in my inbox...
    did I ever respond?No ... I thought you were ignoring me :-)
    Anyway, now that Kodo 3 is at RC status it should be
    stable enought o build Maven plugins for, if you're so inclined... :) If
    not I'm sure we'll get around to it eventually.I've actually got the "enhance" and "version" goals working for 3.0.
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Flex 2 Plugin for QTP -  Trial Version?

    We are trying to automate an application that was developed in Flex Builder 2. We downloaded the Flex 2 plug in from Adobe site, but it is asking for serials while trying to install. Is there any way we can get a trial version of Flex 2 Plugin for QTP?
    Thanks,
    Senthil

    Hi Chikkichintu,
            According to my knowledge Flex Builder don't have any plug-in's for QTP 10.0 (ofcourse am not a Tester). You can make use of FLEX MONKEY
    Try this.... This may help you..
    http://www.gorillalogic.com/flexmonkey
    Thanks,
    Pradeep

  • Flex plugin for Eclipse failed

    Hello,
    I am trying to install the flex plugin for the first time.
    it says that the folder must contain eclipse.exe and a folder
    named configuration. (which it does)
    but the install script fails with that it does not
    (this install in on Vista BTW)
    Thanks for any help

    I know the chances of a reply are lower than the chances of IBM releasing a bug-free, backwards compatible product, but...
    Looking into this one myself (and I'm not optimistic).  What exactly are the problems you're seeing?

  • Unable to install the "Maven Integration for Eclipse" plugin

    I am having trouble trying to install the "Maven Integration for Eclipse" plugin.
    The tab Installed list the plugin with an Install button activated.
    Then when I click on Install, I get the following log:
    Your original request has been modified.
      "m2e - slf4j over logback logging (Optional)" is already installed, so an update will be performed instead.
      "m2e - Maven Integration for Eclipse" is already installed, so an update will be performed instead.
    Cannot complete the install because one or more required items could not be found.
      Software being installed: m2e - slf4j over logback logging (Optional) 1.4.0.20130601-0317 (org.eclipse.m2e.logback.feature.feature.group 1.4.0.20130601-0317)
      Missing requirement: m2e logback configuration 1.4.0.20130601-0317 (org.eclipse.m2e.logback.configuration 1.4.0.20130601-0317) requires 'bundle org.slf4j.api 1.6.2' but it could not be found
      Cannot satisfy dependency:
        From: m2e - slf4j over logback logging (Optional) 1.4.0.20130601-0317 (org.eclipse.m2e.logback.feature.feature.group 1.4.0.20130601-0317)
        To: org.eclipse.m2e.logback.configuration [1.4.0.20130601-0317]
    I am running FlashBuilder 4.6.
    I have Eclipse Juno also installed.
    I am running on Windows7.
    I tried to uninstall both Eclipse and FB and just reinstall FB but still I have the same problem.
    Any help would be greatly appreciated?

    Â Hi Senthil
    The only way for you to get CR4E is to download it from our web site.
    I just made a try, just to check if our web site was having any troubles today, and it worked fine, so I assume you might be experiencing some troubles on your side with your internet connexion.
    I have successfully downloaded the All-In-One zip file of CR4E, that you can find there :
    Â http://diamond.businessobjects.com/node/433
    I suggest you give it some more tries.
    Thank you for using CR4E.
    Thierry (Business Objects)

Maybe you are looking for

  • Actual Sales Vs Targetted Sales

    Hellow Experts, My Client  requires the Sales Office wise, Actual Sales Viruses Targetted Sales Report.  We have the targets of each Sales Office for the year.  We want a report as below......  Input 1) Period - From Date- To date 2) Sales Office - <

  • How to display ext_quote_id in bbsc01 ?

    Hi, I would like to display the ext_quote_id field on BBSC01. I was hoping to just find the correct template name and un-comment the corresponding line. However, i did not find it.... Do you know where it is ? Kind regards, Yann

  • Wht  r the advantages of New debugger in the ECC versions

    Hi,   What r the advantages of the New debugger in the ECC verssions. Thanks, Srik

  • Opinions about the entries in my gallery

    Hi, would you please comment the entries in my gallery . It includes logos, posters, folders, brochure, greeting card.  I consider adding some package designs maybe. Which entries should I remove and which are the best for making my print design port

  • Unable to Run Report on Forms 6i

    I have a probleam with Runing reports on froms 6i.when i use Run_report_object or run_object it does nothing even not display any message.