arpit / openpyro

An open source framework for ActionScript3 based applications

arpit (author)
Wed Oct 21 19:44:41 -0700 2009
commit  323b584e2b03c7252cd2cd684c16817ac0169d1c
tree    3ec5623f37e12f6121147c0d2df80a92cb60807b
parent  fdfe3969d7effb51f7fd8b84262398dc7ae89e45
openpyro / pom.xml
100644 81 lines (73 sloc) 2.058 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
<?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>
 
<repositories>
<repository>
<id>flex-mojos-repository</id>
<url>http://svn.sonatype.org/flexmojos/repository/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>cimians-repo</id>
<url>http://code.cimians.com/maven</url>
</repository>
</repositories>
 
<pluginRepositories>
<pluginRepository>
<id>flex-mojos-repository</id>
<url>http://svn.sonatype.org/flexmojos/repository/</url>
</pluginRepository>
</pluginRepositories>
 
<packaging>swc</packaging>
 
<groupId>com.cimians</groupId>
<artifactId>openPyro</artifactId>
<version>0.1-SNAPSHOT</version>
 
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>info.flex-mojos</groupId>
<artifactId>flex-compiler-mojo</artifactId>
                <version>2.0M10</version>
<extensions>true</extensions>
<configuration>
<locales>
<locale>en_US</locale>
</locales>
</configuration>
</plugin>
</plugins>
</build>
 
<dependencies>
<dependency>
<groupId>net.comcast</groupId>
<artifactId>CIM_logging</artifactId>
<version>1.3</version>
<type>swc</type>
</dependency>
<dependency>
<groupId>gs</groupId>
<artifactId>TweenMax</artifactId>
<version>3.5</version>
<type>swc</type>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>flex-framework</artifactId>
<version>3.1.0.2710</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>info.flex-mojos</groupId>
<artifactId>testing-support</artifactId>
<version>2.0M10</version>
<type>swc</type>
<scope>test</scope>
</dependency>
</dependencies>
 
</project>