-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
100 lines (90 loc) · 3.82 KB
/
pom.xml
File metadata and controls
100 lines (90 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?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>as3snapi</groupId>
<artifactId>as3snapi</artifactId>
<version>1.0.6-SNAPSHOT</version>
<packaging>pom</packaging>
<name>as3snapi - All</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flex.version>4.5.1.21328</flex.version>
<flexmojos.version>4.0-RC2</flexmojos.version>
<flashplayer.version>11.1</flashplayer.version>
<!--<flexmojos.version>3.9</flexmojos.version>--><!--<flex.version>4.5.0.20967</flex.version>--><!--https://docs.sonatype.org/display/FLEXMOJOS/How+To+Specify+Flash+Player+Target+Version--><!--Comment skipTests for tests executing --><!--<skipTests>true</skipTests>-->
</properties>
<modules>
<module>as3snapi-core</module>
<module>as3snapi-sandbox</module>
</modules>
<build>
<pluginManagement>
<plugins>
<!-- Configuration for swc and swf builds -->
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>${flexmojos.version}</version>
<extensions>true</extensions>
<configuration>
<debug>true</debug>
<optimize>true</optimize>
<targetPlayer>${flashplayer.version}</targetPlayer>
<staticLinkRuntimeSharedLibraries>true</staticLinkRuntimeSharedLibraries>
<compilerWarnings>
<no-constructor>false</no-constructor>
</compilerWarnings>
<localesCompiled>
<locale>en_US</locale>
</localesCompiled>
<storepass/>
</configuration>
<executions>
<execution>
<goals>
<goal>sources</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.adobe.flex</groupId>
<artifactId>compiler</artifactId>
<version>${flex.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>flex-framework</artifactId>
<version>${flex.version}</version>
<type>pom</type>
</dependency>
</dependencies>
<repositories>
<repository>
<id>flex-mojos-repository</id>
<url>http://repository.sonatype.org/content/groups/flexgroup//</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>flex-mojos-repository</id>
<url>http://repository.sonatype.org/content/groups/flexgroup/</url>
</pluginRepository>
</pluginRepositories>
</project>