-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
121 lines (109 loc) · 4.63 KB
/
pom.xml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="UTF-8"?>
<!--
Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC.
Copyright (C) 2008-2012 Marvin Froeder <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<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>info.rvin.itest</groupId>
<artifactId>simple-air</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>air</module>
<module>swf</module>
<module>swc</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flexmojos.version>7.1.0-SNAPSHOT</flexmojos.version>
<flex.version>4.14.1</flex.version>
<air.version>18.0</air.version>
<playerglobal.version>11.7</playerglobal.version>
</properties>
<!--<repositories>-->
<!--<repository>-->
<!--<id>flex-mojos-repository</id>-->
<!--<name>flex-mojos-repository</name>-->
<!--<url>http://210.36.200.38:8081/nexus/content/groups/com.xjzx.videoRecognition/</url>-->
<!--</repository>-->
<!--</repositories>-->
<!--<pluginRepositories>-->
<!--<pluginRepository>-->
<!--<id>flex-mojos-plugin-repository</id>-->
<!--<url>http://210.36.200.38:8081/nexus/content/groups/com.xjzx.videoRecognition/</url>-->
<!--</pluginRepository>-->
<!--</pluginRepositories>-->
<!--<distributionManagement>-->
<!--<repository>-->
<!--<id>artifactory</id>-->
<!--<name>artifactory-releases</name>-->
<!--<url>http://210.36.200.38:8081/nexus/content/repositories/releases/</url>-->
<!--</repository>-->
<!--<snapshotRepository>-->
<!--<id>artifactory</id>-->
<!--<name>artifactory-snapshots</name>-->
<!--<url>http://210.36.200.38:8081/nexus/content/repositories/snapshots/</url>-->
<!--</snapshotRepository>-->
<!--</distributionManagement>-->
<build>
<sourceDirectory>src/main/flex</sourceDirectory>
<testSourceDirectory>src/test/flex</testSourceDirectory>
<plugins>
<plugin>
<groupId>net.flexmojos.oss</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>${flexmojos.version}</version>
<extensions>true</extensions>
<dependencies>
<dependency>
<groupId>org.apache.flex</groupId>
<artifactId>compiler</artifactId>
<version>${flex.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Flex SDK dependencies -->
<dependency>
<groupId>org.apache.flex</groupId>
<artifactId>framework</artifactId>
<version>${flex.version}</version>
<type>pom</type>
</dependency>
<!-- Air SDK dependencies -->
<dependency>
<groupId>org.apache.flex.framework</groupId>
<artifactId>air</artifactId>
<version>${flex.version}</version>
<type>pom</type>
</dependency>
<!-- Air runtime dependencies -->
<dependency>
<groupId>com.adobe.air</groupId>
<artifactId>framework</artifactId>
<version>${air.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.adobe.air.framework</groupId>
<artifactId>airglobal</artifactId>
<version>${air.version}</version>
<type>swc</type>
</dependency>
</dependencies>
</project>