Created
December 26, 2008 06:52
-
-
Save kfitzpatrick/40019 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> | |
<repository> | |
<id>flex-mojos-googlecode-repository</id> | |
<url>http://flex-mojos.googlecode.com/svn/trunk/repository/</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> | |
<testSourceDirectory>tests</testSourceDirectory> | |
<plugins> | |
<plugin> | |
<groupId>info.flex-mojos</groupId> | |
<artifactId>flexcover-mojo</artifactId> | |
<version>2.0M10</version> | |
<dependencies> | |
<dependency> | |
<groupId>com.adobe.flex</groupId> | |
<artifactId>compiler</artifactId> | |
<version>3.0.1.1092-flexcover_0.61</version> | |
<type>pom</type> | |
</dependency> | |
<dependency> | |
<groupId>info.flex-mojos</groupId> | |
<artifactId>testing-support</artifactId> | |
<version>2.0M10</version> | |
<type>swc</type> | |
</dependency> | |
</dependencies> | |
<configuration> | |
<coverageViewerPath>/Applications/CoverageViewer.app/Contents/MacOS/CoverageViewer</coverageViewerPath> | |
<!-- Temporary configuration for our own test runner template. Should work without this with milestone 11. --> | |
<testRunnerTemplate>tests/testTemplates/TestRunner.vm</testRunnerTemplate> | |
</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.0.1.1092-flexcover_0.61</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> <!-- Scope:test Necessary to make sure the unused frameworks don't get used in regular compilation --> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment