source: EDIS/trunk/java/tracking-ui-core/pom.xml@ 1235

Last change on this file since 1235 was 1235, checked in by Solomon Blaz, 13 years ago

committing first working version of EDIS maven build - upgraded to maven 3.0.3, flexmojos 3.8, flex sdk 3.6.0.16995, removed dependencies on KAAJEE and maven repository on VA intranet, replaced with one on filesystem

File size: 2.0 KB
Line 
1<?xml version="1.0"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>gov.va.med.edp</groupId>
7 <artifactId>edis-tracking-parent</artifactId>
8 <version>1.0.1.WorldVistA-SNAPSHOT</version>
9 <relativePath>../tracking-parent</relativePath>
10 </parent>
11 <groupId>gov.va.med.edp</groupId>
12 <artifactId>edis-tracking-ui-core</artifactId>
13 <version>1.0.1.WorldVistA-SNAPSHOT</version>
14 <packaging>swc</packaging>
15 <name>EDIS Tracking UI Core</name>
16 <dependencies>
17 <dependency>
18 <groupId>com.adobe.cairngorm</groupId>
19 <artifactId>cairngorm</artifactId>
20 <version>${cairngorm.version}</version>
21 <type>swc</type>
22 </dependency>
23 <!-- Flex SDK dependencies -->
24 <dependency>
25 <groupId>com.adobe.flex.framework</groupId>
26 <artifactId>flex-framework</artifactId>
27 <version>${flex.version}</version>
28 <type>pom</type>
29 </dependency>
30 <!-- FlexUnit dependencies -->
31 <dependency>
32 <groupId>com.adobe.flexunit</groupId>
33 <artifactId>flexunit</artifactId>
34 <version>${flexunit.version}</version>
35 <type>swc</type>
36 <scope>test</scope>
37 </dependency>
38 </dependencies>
39 <build>
40 <sourceDirectory>src/main/flex</sourceDirectory>
41 <testSourceDirectory>src/test/flex</testSourceDirectory>
42 <plugins>
43 <plugin>
44 <groupId>org.sonatype.flexmojos</groupId>
45 <artifactId>flexmojos-maven-plugin</artifactId>
46 <version>${flex.mojos.version}</version>
47 <extensions>true</extensions>
48 </plugin>
49 </plugins>
50 </build>
51</project>
Note: See TracBrowser for help on using the repository browser.