You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@flex.apache.org by PeterBridger <pe...@sparkol.com> on 2014/12/01 17:25:54 UTC

Creating a Jenkins/Maven POM for an existing Flash Develop project

Hello all

I've spent several days attempting to create a POM that will allow an
existing AIR application created in Flash Develop to be build by a Jenkins
build server.

In Flash Develop the application is targeting AIR 14 and making use of Flex
4.6.0.

I'm making slow progress, as I get to grips with Jenkins and Maven for the
first time. Along with understanding Flex and AIR in more detail.

I'm struggling to find up to date information online and Maven repositories
hosting the dependencies needed.

Jenkins is not yet able to build, due to problems with the POM. The latest
Jenkins error message is:

*[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project com.xxxxxxxxxxxx:2.1-SNAPSHOT (C:\Program Files
(x86)\Jenkins\jobs\xxxxxxxxx\workspace\pom.xml) has 2 errors
[ERROR]     Unresolveable build extension: Plugin
net.flexmojos.oss:flexmojos-maven-plugin:7.0.1 or one of its dependencies
could not be resolved: The following artifacts could not be resolved:
org.apache.flex:compiler:pom:4.12.1.20140427,
org.apache.flex.compiler:mxmlc:jar:4.12.1.20140427,
org.apache.flex.compiler:digest:jar:4.12.1.20140427,
org.apache.flex.compiler:optimizer:jar:4.12.1.20140427,
org.apache.flex.compiler:asdoc:jar:4.12.1.20140427,
org.apache.flex.compiler:swcdepends:jar:4.12.1.20140427: Failure to find
org.apache.flex:compiler:pom:4.12.1.20140427 in
https://oss.sonatype.org/content/repositories/releases was cached in the
local repository, resolution will not be reattempted until the update
interval of sonatype has elapsed or updates are forced -> [Help 2]
[ERROR]     Unknown packaging: swf @ line 6, column 13
[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] *

The POM is as follows:

*<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>com.xxxxxx</groupId>
    <artifactId>xxxxxxxxxxx</artifactId>
    <version>2.1-SNAPSHOT</version>
	<packaging>swf</packaging>
	
	<properties>
		<flexmojos.version>7.0.1</flexmojos.version>
		<flex.version>4.12.1.20140427</flex.version>
		<flashplayer.version>11.1</flashplayer.version>
		<source.filename>AppMain.as</source.filename>
	</properties>    
	
    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin> 
				<groupId>net.flexmojos.oss</groupId>
                <artifactId>flexmojos-maven-plugin</artifactId>
                <version>${flexmojos.version}</version>
                <extensions>true</extensions>
				
				<configuration>
					<debug>true</debug>
					<sourceFile>${source.filename}</sourceFile>
                    <configurationReport>true</configurationReport>
					<defines>
						
					</defines>
				</configuration>	
				
				<dependencies>
                    
                    <dependency>
                        <groupId>net.flexmojos.oss</groupId>
                       
<artifactId>flexmojos-threadlocaltoolkit-wrapper</artifactId>
                        <version>${flexmojos.version}</version>
                    </dependency>		
										
                    <dependency>
                        <groupId>org.apache.flex</groupId>
                        <artifactId>compiler</artifactId>
                        <version>${flex.version}</version>
                        <type>pom</type>
                    </dependency>
				</dependencies>					
            </plugin>
        </plugins>
    </build>
    
    <dependencies>
        <dependency> 
            <groupId>org.apache.flex</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>pom</type>
        </dependency>		
		
		<dependency>
			<groupId>com.adobe.flash.framework</groupId>
			<artifactId>playerglobal</artifactId>
			<version>${flashplayer.version}</version>
			<type>swc</type>
		</dependency>
		
    </dependencies>
	
	<repositories>
        <repository> 
            <id>sonatype</id>
			<name>Sonatype Repository</name>
           
<url>https://oss.sonatype.org/content/repositories/releases</url>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>never</updatePolicy>
            </releases>
        </repository>	
		<repository> 
			<id>MyRespostory</id>
			<name>My repo</name>
			<url>https://xxxxxxxxxxxxxxx/url>
		</repository>
		<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>sonatype</id>
			<name>Sonatype Repository</name>
           
<url>https://oss.sonatype.org/content/repositories/releases</url>
		</pluginRepository>	
		<pluginRepository>
			<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>
		</pluginRepository>
	</pluginRepositories>
		
</project>*





--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

AW: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by Christofer Dutz <ch...@c-ware.de>.
I wrote down a walk though in the apache flex wiki. Just search for: quick start guide: building apache flex applications using maven

Unfortunately all code blocks are empty in display but contain text in edit mode. No idea why though.

Examples fit building air applications should be in the flexmojos testsuite.

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "Frédéric THOMAS" <we...@hotmail.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Creating a Jenkins/Maven POM for an existing Flash Develop project
Datum: Di., Dez. 9, 2014 10:24

Hi Peter,
Actually, the online documentation refers mostly to FM 3/4 and most of it has been removed (eg. the FM Group on google, FM JIRA, etc...), the documentation of the current ones is moving as the implementation evolves and not always updated to reflect the last changes or to describe very precisely the important differences between those implementations and the consequences in building an application with, I guess that's will be like that until the Apache Flex Mavenize SDK will be generated and made public along with the relative tools, unfortunately, there's only Chris working on it at the moment, is a volunteer and does already its best to develop and manage this set of projects (and there are big ones).
So, you have 3 options IMO, either you wait for the stabilization and you will be able to build you app in a standard way or you did into deeply to figure out how it works and do it yourself knowing anyway that won't be the final (standard) way but will work  or you contract with someone who's specialist in it and he does it for you in less time.
I know, it is not perfect at the moment as not everything is ready yet but be sure that's moving forward.
HTH
Frédéric THOMAS

> Date: Mon, 8 Dec 2014 08:23:04 -0800
> From: peterb@sparkol.com
> To: users@flex.apache.org
> Subject: Re: AW: Creating a Jenkins/Maven POM for an existing Flash Develop project
>
> Thanks both for your input. Unfortunately I feel like I'm spinning my wheels,
> unsure of what steps to follow and where to go next.
>
> I've deleted the repositories I uploaded to Github, as wasn't aware of this
> being a problem when I did so.
>
> It feels like alchemy attempting to get the right versions of all the
> particular dependencies and referencing or creating my own repositories.
>
> Is there a particular guide I can follow online, that shows how to get an
> AIR application running on Jenkins using Maven? I keep finding out of date
> information or just snippets.
>
> Does it make more sense to wait until further work is done on version 7 of
> Flexmojos, as it sounds like a lot of good work is going into making that
> easier to work with.
>
> All the best
> Peter
>
>
>
> --
> View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921p9019.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.


RE: AW: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by Frédéric THOMAS <we...@hotmail.com>.
Hi Peter,
Actually, the online documentation refers mostly to FM 3/4 and most of it has been removed (eg. the FM Group on google, FM JIRA, etc...), the documentation of the current ones is moving as the implementation evolves and not always updated to reflect the last changes or to describe very precisely the important differences between those implementations and the consequences in building an application with, I guess that's will be like that until the Apache Flex Mavenize SDK will be generated and made public along with the relative tools, unfortunately, there's only Chris working on it at the moment, is a volunteer and does already its best to develop and manage this set of projects (and there are big ones).
So, you have 3 options IMO, either you wait for the stabilization and you will be able to build you app in a standard way or you did into deeply to figure out how it works and do it yourself knowing anyway that won't be the final (standard) way but will work  or you contract with someone who's specialist in it and he does it for you in less time.
I know, it is not perfect at the moment as not everything is ready yet but be sure that's moving forward.
HTH
Frédéric THOMAS

> Date: Mon, 8 Dec 2014 08:23:04 -0800
> From: peterb@sparkol.com
> To: users@flex.apache.org
> Subject: Re: AW: Creating a Jenkins/Maven POM for an existing Flash Develop project
> 
> Thanks both for your input. Unfortunately I feel like I'm spinning my wheels,
> unsure of what steps to follow and where to go next.
> 
> I've deleted the repositories I uploaded to Github, as wasn't aware of this
> being a problem when I did so.
> 
> It feels like alchemy attempting to get the right versions of all the
> particular dependencies and referencing or creating my own repositories.
> 
> Is there a particular guide I can follow online, that shows how to get an
> AIR application running on Jenkins using Maven? I keep finding out of date
> information or just snippets.
> 
> Does it make more sense to wait until further work is done on version 7 of
> Flexmojos, as it sounds like a lot of good work is going into making that
> easier to work with.
> 
> All the best
> Peter
> 
> 
> 
> --
> View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921p9019.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
 		 	   		  

Re: AW: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by PeterBridger <pe...@sparkol.com>.
Thanks both for your input. Unfortunately I feel like I'm spinning my wheels,
unsure of what steps to follow and where to go next.

I've deleted the repositories I uploaded to Github, as wasn't aware of this
being a problem when I did so.

It feels like alchemy attempting to get the right versions of all the
particular dependencies and referencing or creating my own repositories.

Is there a particular guide I can follow online, that shows how to get an
AIR application running on Jenkins using Maven? I keep finding out of date
information or just snippets.

Does it make more sense to wait until further work is done on version 7 of
Flexmojos, as it sounds like a lot of good work is going into making that
easier to work with.

All the best
Peter



--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921p9019.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

AW: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by Christofer Dutz <ch...@c-ware.de>.
Hi Peter, 

sorry for the late response. As promised off list, I'll try to help you here :-)

Unfortunately the internet access at my current customer prevents me from accessing my Emails at work :-(

First thing is: You uploaded your mavenized fdk to github ... well github is not a normal maven repository. And you could get into trouble as you are hosting Adobe resources pulbicaly ... I would suggest to drop that repo. So I wouldn't expect this to work correctly. I would suggest using Nexus or Artifactory or deploying it locally by copying that stuff to your ".m2/repository".

I think there was a problem with Flexmojos 7.0.1 that it had a dependency to 4.12, but this issue was fixed on 7.1.0-SNAPSHOT, but I haven't released that yet :-( Hopefully I will as soon as I have finished the Falcon and FlexJS support. Eventually you could sort this out by providing an empty pom with this content:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.apache.flex</groupId>
    <artifactId>compiler</artifactId>
    <version>4.12.1.20140427</version>
    <packaging>pom</packaging>

</project>


Hope this helps a little. Feel free to report any problems you are still having and I'll try to help.

Chris

________________________________________
Von: PeterBridger <pe...@sparkol.com>
Gesendet: Dienstag, 2. Dezember 2014 17:36
An: users@flex.apache.org
Betreff: RE: Creating a Jenkins/Maven POM for an existing Flash Develop project

Hello Frédéric

Thanks for your response.

I've used the  Apache Flex SDK installer
<http://flex.apache.org/installer.html>   to download:

* Apache Flex SDK 4.13.0
* Flash Player 14
* AIR 14

I've then used Mavenizer and  followed the instructions
<https://cwiki.apache.org/confluence/display/FLEX/Apache+Flex+SDK+Mavenizer>
and copied the generated files to my  own Maven repository
<https://github.com/MaverickUK/maven-repo>  .

However even though I'm setting the compiler to use the specific version
I've Mavenized in the POM as follows:

*                    <dependency>
                        <groupId>org.apache.flex</groupId>
                        <artifactId>compiler</artifactId>
                        <version>4.13.0.20140701</version>
                        <type>pom</type>
                    </dependency>*

It appears to be trying to download version 4.12.1.20140427?

Whether or not that's a factor - the build fails, with the following final
error message:

*SNAPSHOT: Failed to collect dependencies at
org.apache.flex:framework:pom:4.13.0.20140701: Failed to read artifact
descriptor for org.apache.flex:framework:pom:4.13.0.20140701: Could not
transfer artifact org.apache.flex:framework:pom:4.13.0.20140701 from/to
Git-MaverickUK (https://github.com/MaverickUK/maven-repo/raw/master/):
Checksum validation failed, no checksums available from the repository ->
[Help 1]*

I don't understand why it's giving this error, as that version of the
dependency is in my Maven repository on Github.

Regards
Peter



--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921p8945.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

RE: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by Frédéric THOMAS <we...@hotmail.com>.
Peter,
> *SNAPSHOT: Failed to collect dependencies at
> org.apache.flex:framework:pom:4.13.0.20140701: Failed to read artifact
> descriptor for org.apache.flex:framework:pom:4.13.0.20140701: Could not
> transfer artifact org.apache.flex:framework:pom:4.13.0.20140701 from/to
> Git-MaverickUK (https://github.com/MaverickUK/maven-repo/raw/master/):
> Checksum validation failed, no checksums available from the repository ->
> [Help 1]*
It seems the mavenizer did not set the install plugin checksum option set to true, usually, you upload to a maven repository manager which compute the checksum at import time, did you to import the mavenized SDK to an artifactory ?
Frédéric THOMAS

> Date: Tue, 2 Dec 2014 08:36:05 -0800
> From: peterb@sparkol.com
> To: users@flex.apache.org
> Subject: RE: Creating a Jenkins/Maven POM for an existing Flash Develop project
> 
> Hello Frédéric
> 
> Thanks for your response.
> 
> I've used the  Apache Flex SDK installer
> <http://flex.apache.org/installer.html>   to download:
> 
> * Apache Flex SDK 4.13.0
> * Flash Player 14
> * AIR 14
> 
> I've then used Mavenizer and  followed the instructions
> <https://cwiki.apache.org/confluence/display/FLEX/Apache+Flex+SDK+Mavenizer>  
> and copied the generated files to my  own Maven repository
> <https://github.com/MaverickUK/maven-repo>  .
> 
> However even though I'm setting the compiler to use the specific version
> I've Mavenized in the POM as follows:
> 
> *                    <dependency>
>                         <groupId>org.apache.flex</groupId>
>                         <artifactId>compiler</artifactId>
>                         <version>4.13.0.20140701</version>
>                         <type>pom</type>
>                     </dependency>*
> 
> It appears to be trying to download version 4.12.1.20140427?
> 
> Whether or not that's a factor - the build fails, with the following final
> error message:
> 
> *SNAPSHOT: Failed to collect dependencies at
> org.apache.flex:framework:pom:4.13.0.20140701: Failed to read artifact
> descriptor for org.apache.flex:framework:pom:4.13.0.20140701: Could not
> transfer artifact org.apache.flex:framework:pom:4.13.0.20140701 from/to
> Git-MaverickUK (https://github.com/MaverickUK/maven-repo/raw/master/):
> Checksum validation failed, no checksums available from the repository ->
> [Help 1]*
> 
> I don't understand why it's giving this error, as that version of the
> dependency is in my Maven repository on Github.
> 
> Regards
> Peter
> 
> 
> 
> --
> View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921p8945.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
 		 	   		  

RE: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by PeterBridger <pe...@sparkol.com>.
Hello Frédéric

Thanks for your response.

I've used the  Apache Flex SDK installer
<http://flex.apache.org/installer.html>   to download:

* Apache Flex SDK 4.13.0
* Flash Player 14
* AIR 14

I've then used Mavenizer and  followed the instructions
<https://cwiki.apache.org/confluence/display/FLEX/Apache+Flex+SDK+Mavenizer>  
and copied the generated files to my  own Maven repository
<https://github.com/MaverickUK/maven-repo>  .

However even though I'm setting the compiler to use the specific version
I've Mavenized in the POM as follows:

*                    <dependency>
                        <groupId>org.apache.flex</groupId>
                        <artifactId>compiler</artifactId>
                        <version>4.13.0.20140701</version>
                        <type>pom</type>
                    </dependency>*

It appears to be trying to download version 4.12.1.20140427?

Whether or not that's a factor - the build fails, with the following final
error message:

*SNAPSHOT: Failed to collect dependencies at
org.apache.flex:framework:pom:4.13.0.20140701: Failed to read artifact
descriptor for org.apache.flex:framework:pom:4.13.0.20140701: Could not
transfer artifact org.apache.flex:framework:pom:4.13.0.20140701 from/to
Git-MaverickUK (https://github.com/MaverickUK/maven-repo/raw/master/):
Checksum validation failed, no checksums available from the repository ->
[Help 1]*

I don't understand why it's giving this error, as that version of the
dependency is in my Maven repository on Github.

Regards
Peter



--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921p8945.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

RE: Creating a Jenkins/Maven POM for an existing Flash Develop project

Posted by Frédéric THOMAS <we...@hotmail.com>.
Hi Peter,
First of all, IIRC, you can't use net.flexmojos.oss:flexmojos-maven-plugin:7.0.1 and Flex SDK 4.6, you might use eventually the 6.0.1 and mavenize both the Flex 4.6 and Air 14 SDKs with the Mavenizer (the old version you can find and build from the ApacheFlex Utilities repo [1]) and deploy them to your Maven repository, the reason is that those SDKs can't be public at the moment and therefore you won't find them anywhere, hopefully , that will change soon.
You can find more info here [2].
All in all, at the moment, even though it is part of what I'm doing every day at work, it is a tricky job to do mavenize Flex / Air applications at the moment, one of the reason is that the old versions of FlexMojos are not supported anymore and the new one requires a quite deep knowledge, once again, that should change relatively soon.
Frédéric THOMAS
[1] https://git-wip-us.apache.org/repos/asf/flex-utilities.git[2] https://cwiki.apache.org/confluence/display/FLEX/Apache+Flex+SDK+Mavenizer

> Date: Mon, 1 Dec 2014 08:25:54 -0800
> From: peterb@sparkol.com
> To: users@flex.apache.org
> Subject: Creating a Jenkins/Maven POM for an existing Flash Develop project
> 
> Hello all
> 
> I've spent several days attempting to create a POM that will allow an
> existing AIR application created in Flash Develop to be build by a Jenkins
> build server.
> 
> In Flash Develop the application is targeting AIR 14 and making use of Flex
> 4.6.0.
> 
> I'm making slow progress, as I get to grips with Jenkins and Maven for the
> first time. Along with understanding Flex and AIR in more detail.
> 
> I'm struggling to find up to date information online and Maven repositories
> hosting the dependencies needed.
> 
> Jenkins is not yet able to build, due to problems with the POM. The latest
> Jenkins error message is:
> 
> *[ERROR] The build could not read 1 project -> [Help 1]
> [ERROR]   
> [ERROR]   The project com.xxxxxxxxxxxx:2.1-SNAPSHOT (C:\Program Files
> (x86)\Jenkins\jobs\xxxxxxxxx\workspace\pom.xml) has 2 errors
> [ERROR]     Unresolveable build extension: Plugin
> net.flexmojos.oss:flexmojos-maven-plugin:7.0.1 or one of its dependencies
> could not be resolved: The following artifacts could not be resolved:
> org.apache.flex:compiler:pom:4.12.1.20140427,
> org.apache.flex.compiler:mxmlc:jar:4.12.1.20140427,
> org.apache.flex.compiler:digest:jar:4.12.1.20140427,
> org.apache.flex.compiler:optimizer:jar:4.12.1.20140427,
> org.apache.flex.compiler:asdoc:jar:4.12.1.20140427,
> org.apache.flex.compiler:swcdepends:jar:4.12.1.20140427: Failure to find
> org.apache.flex:compiler:pom:4.12.1.20140427 in
> https://oss.sonatype.org/content/repositories/releases was cached in the
> local repository, resolution will not be reattempted until the update
> interval of sonatype has elapsed or updates are forced -> [Help 2]
> [ERROR]     Unknown packaging: swf @ line 6, column 13
> [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] *
> 
> The POM is as follows:
> 
> *<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>com.xxxxxx</groupId>
>     <artifactId>xxxxxxxxxxx</artifactId>
>     <version>2.1-SNAPSHOT</version>
> 	<packaging>swf</packaging>
> 	
> 	<properties>
> 		<flexmojos.version>7.0.1</flexmojos.version>
> 		<flex.version>4.12.1.20140427</flex.version>
> 		<flashplayer.version>11.1</flashplayer.version>
> 		<source.filename>AppMain.as</source.filename>
> 	</properties>    
> 	
>     <build>
>         <sourceDirectory>src</sourceDirectory>
>         <plugins>
>             <plugin> 
> 				<groupId>net.flexmojos.oss</groupId>
>                 <artifactId>flexmojos-maven-plugin</artifactId>
>                 <version>${flexmojos.version}</version>
>                 <extensions>true</extensions>
> 				
> 				<configuration>
> 					<debug>true</debug>
> 					<sourceFile>${source.filename}</sourceFile>
>                     <configurationReport>true</configurationReport>
> 					<defines>
> 						
> 					</defines>
> 				</configuration>	
> 				
> 				<dependencies>
>                     
>                     <dependency>
>                         <groupId>net.flexmojos.oss</groupId>
>                        
> <artifactId>flexmojos-threadlocaltoolkit-wrapper</artifactId>
>                         <version>${flexmojos.version}</version>
>                     </dependency>		
> 										
>                     <dependency>
>                         <groupId>org.apache.flex</groupId>
>                         <artifactId>compiler</artifactId>
>                         <version>${flex.version}</version>
>                         <type>pom</type>
>                     </dependency>
> 				</dependencies>					
>             </plugin>
>         </plugins>
>     </build>
>     
>     <dependencies>
>         <dependency> 
>             <groupId>org.apache.flex</groupId>
>             <artifactId>framework</artifactId>
>             <version>${flex.version}</version>
>             <type>pom</type>
>         </dependency>		
> 		
> 		<dependency>
> 			<groupId>com.adobe.flash.framework</groupId>
> 			<artifactId>playerglobal</artifactId>
> 			<version>${flashplayer.version}</version>
> 			<type>swc</type>
> 		</dependency>
> 		
>     </dependencies>
> 	
> 	<repositories>
>         <repository> 
>             <id>sonatype</id>
> 			<name>Sonatype Repository</name>
>            
> <url>https://oss.sonatype.org/content/repositories/releases</url>
>             <releases>
>                 <enabled>true</enabled>
>                 <updatePolicy>never</updatePolicy>
>             </releases>
>         </repository>	
> 		<repository> 
> 			<id>MyRespostory</id>
> 			<name>My repo</name>
> 			<url>https://xxxxxxxxxxxxxxx/url>
> 		</repository>
> 		<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>sonatype</id>
> 			<name>Sonatype Repository</name>
>            
> <url>https://oss.sonatype.org/content/repositories/releases</url>
> 		</pluginRepository>	
> 		<pluginRepository>
> 			<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>
> 		</pluginRepository>
> 	</pluginRepositories>
> 		
> </project>*
> 
> 
> 
> 
> 
> --
> View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Creating-a-Jenkins-Maven-POM-for-an-existing-Flash-Develop-project-tp8921.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.