Could you please Whip up a Little sample Project that produces the error and 
create a jira issue in the Flexmojos Jira at https://flexmojos.atlassian.net 
and attach that Project there with a short Problem description. I'll try to 
have a look at the Problem with the wrapper and having a sample projekt 
dramatically reduces the amount of time I Need to reproduce it.

Chris
________________________________________
Von: Poonam Anand <[email protected]>
Gesendet: Mittwoch, 12. März 2014 17:33
An: [email protected]
Betreff: Re: AW: AW: Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal 
giving error for swf type pom

No those issues are seen only in FB. From terminal build is successful in below 
pom also if I remove executions block. With this block in place, error says 
wrapper failed. I want to be able to generate html wrapper for swf.

From: "Christofer Dutz [via Apache Flex Users]" 
<[email protected]<mailto:[email protected]>>
Date: Wednesday, 12 March 2014 9:57 PM
To: Poonam Anand <[email protected]<mailto:[email protected]>>
Subject: AW: AW: Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal giving 
error for swf type pom

Well I would assume the Problem is related as Flexmojos Needs some libs that it 
seems to be unable to get.
And make sure your local maven repo isn't containing any ".lastupdate" files 
instead of the missing artifacts as maven will only try to download them the 
next day as Long as they are there ... so I would recommend to delete any 
"*.lastupdate" files in your maven local repo.

Chris
________________________________________
Von: Poonam Anand <[hidden email]</user/SendEmail.jtp?type=node&node=5422&i=0>>
Gesendet: Mittwoch, 12. März 2014 17:17
An: [hidden email]</user/SendEmail.jtp?type=node&node=5422&i=1>
Betreff: Re: AW: Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal giving 
error for swf type pom

Problem is different here. Other post was for 1 library project. Although 
problems faced there are also present with this pom. This pom is for 
application project.

From: "Christofer Dutz [via Apache Flex Users]" <[hidden 
email]</user/SendEmail.jtp?type=node&node=5422&i=2><mailto:[hidden 
email]</user/SendEmail.jtp?type=node&node=5422&i=3>>>
Date: Wednesday, 12 March 2014 8:34 PM
To: Poonam Anand <[hidden 
email]</user/SendEmail.jtp?type=node&node=5422&i=4><mailto:[hidden 
email]</user/SendEmail.jtp?type=node&node=5422&i=5>>>
Subject: AW: Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal giving 
error for swf type pom

Was this related to your newer post? Most of the pom seems identical, but not 
all ...

________________________________________
Von: Poonam Anand <[hidden email]</user/SendEmail.jtp?type=node&node=5413&i=0>>
Gesendet: Mittwoch, 12. März 2014 15:40
An: [hidden email]</user/SendEmail.jtp?type=node&node=5413&i=1>
Betreff: Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal giving error 
for swf type pom

I am using Flex mojos 6.0.1 and Flex SDK 4.10. Getting error as 'Failed to
execute goal net.flexmojos.oss:flexmojos-maven-plugin:6.0.1:wrapper
(default) on project sampleapplication: Execution default of goal
net.flexmojos.oss:flexmojos-maven-plugin:6.0.1:wrapper failed: 2 '

Not sure if I am missing something. Pom as below:

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd";>
        <modelVersion>4.0.0</modelVersion>
        <groupId>sampleapplication</groupId>
        <artifactId>sampleapplication</artifactId>
        <version>1.0-SNAPSHOT</version>
        <packaging>swf</packaging>
        <name>Sample Application</name>

        <properties>
                <flex.version>4.10.0.20130801</flex.version>
                <flexmojos.version>6.0.1</flexmojos.version>
        </properties>

        <build>
                <sourceDirectory>src/main/flex</sourceDirectory>

                <resources>
                        <resource>
                                <directory>src/main/resources</directory>
                        </resource>
                </resources>

                <plugins>
                        <plugin>
                                <groupId>net.flexmojos.oss</groupId>
                                <artifactId>flexmojos-maven-plugin</artifactId>
                                <version>${flexmojos.version}</version>
                                <extensions>true</extensions>

                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>wrapper</goal>
                                                </goals>
                                                <configuration>
                                                        <parameters>
                                                                
<title>SampleApplication</title>
                                                                
<version_major>10</version_major>
                                                                
<application>SampleApplicationSWF</application>
                                                                
<width>100%</width>
                                                                
<height>100%</height>
                                                        </parameters>
                                                </configuration>
                                        </execution>
                                </executions>

                                <dependencies>
                                        <dependency>
                                                
<groupId>net.flexmojos.oss</groupId>
                                                
<artifactId>flexmojos-threadlocaltoolkit-wrapper</artifactId>
                                                
<version>${flexmojos.version}</version>
                                        </dependency>

                                        <dependency>
                                                
<groupId>com.adobe.flex</groupId>
                                                
<artifactId>compiler</artifactId>
                                                
<version>${flex.version}</version>
                                                <type>pom</type>
                                        </dependency>
                                </dependencies>

                                <configuration>
                                        
<templateURI>folder:html-wrapper-template/</templateURI>

                                        
<sourceFile>SampleApplication.mxml</sourceFile>

                                        
<finalName>SampleApplicationSWF</finalName>
                                        
<htmlName>SampleApplicationSWF</htmlName>


                                        <source-path>
                                                
<path-element>${project.build.sourceDirectory}</path-element>
                                                
<path-element>src/main/resources</path-element>
                                        </source-path>

                                        <fonts>
                                                <managers>
                                                        
<manager>flash.fonts.CFFFontManager</manager>
                                                </managers>
                                        </fonts>

                                        <locales>
                                                <locale>en_US</locale>
                                        </locales>
                                        <targetPlayer>11.8</targetPlayer>
                                </configuration>

                        </plugin>
                </plugins>
        </build>
        <dependencies>
                <dependency>
                        <groupId>kiwikapp</groupId>
                        <artifactId>kiwikapp</artifactId>
                        <version>1.0-SNAPSHOT</version>
                        <type>swc</type>
                </dependency>
        </dependencies>
</project>




--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Flex-mojos-6-0-1-and-Flex-SDK-4-10-html-wrapper-goal-giving-error-for-swf-type-pom-tp5409.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


________________________________
If you reply to this email, your message will be added to the discussion below:
http://apache-flex-users.2333346.n4.nabble.com/Flex-mojos-6-0-1-and-Flex-SDK-4-10-html-wrapper-goal-giving-error-for-swf-type-pom-tp5409p5413.html
To unsubscribe from Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal 
giving error for swf type pom, click here<
NAML<http://apache-flex-users.2333346.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>




--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Flex-mojos-6-0-1-and-Flex-SDK-4-10-html-wrapper-goal-giving-error-for-swf-type-pom-tp5409p5419.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


________________________________
If you reply to this email, your message will be added to the discussion below:
http://apache-flex-users.2333346.n4.nabble.com/Flex-mojos-6-0-1-and-Flex-SDK-4-10-html-wrapper-goal-giving-error-for-swf-type-pom-tp5409p5422.html
To unsubscribe from Flex mojos 6.0.1 and Flex SDK 4.10 - html wrapper goal 
giving error for swf type pom, click 
here<http://apache-flex-users.2333346.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=5409&code=UG9vbmFtLkFuYW5kQGd1YXZ1cy5jb218NTQwOXwtMTgzOTMwNjQxOA==>.
NAML<http://apache-flex-users.2333346.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>




--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Flex-mojos-6-0-1-and-Flex-SDK-4-10-html-wrapper-goal-giving-error-for-swf-type-pom-tp5409p5423.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to