Ignore:
Timestamp:
Sep 7, 2011, 4:29:40 AM (13 years ago)
Author:
Solomon Blaz
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • EDIS/trunk/java/tracking-ui-bigboard/pom.xml

    r1227 r1235  
    11<?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/maven-v4_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-T29-SNAPSHOT</version>
    9         <relativePath>../tracking-parent</relativePath>
    10     </parent>
    11     <groupId>gov.va.med.edp</groupId>
    12     <artifactId>edis-tracking-ui-bigboard</artifactId>
    13     <packaging>swf</packaging>
    14     <name>EDIS Tracking UI Big Board</name>
    15     <version>1.0-T29-SNAPSHOT</version>
    16     <dependencies>
    17         <dependency>
    18             <groupId>gov.va.med.edp</groupId>
    19             <artifactId>edis-tracking-ui-core</artifactId>
    20             <version>${project.version}</version>
    21             <type>swc</type>
    22         </dependency>
    23     </dependencies>
    24     <build>
    25         <sourceDirectory>src/main/flex</sourceDirectory>
    26         <resources>
    27             <resource>
    28                 <directory>src/main/resources</directory>
    29                 <filtering>true</filtering>
    30             </resource>
    31         </resources>
    32         <plugins>
    33             <plugin>
    34                 <groupId>info.flex-mojos</groupId>
    35                 <artifactId>flex-compiler-mojo</artifactId>
    36             </plugin>
    37         </plugins>
    38     </build>
     2<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">
     3        <modelVersion>4.0.0</modelVersion>
     4        <parent>
     5                <groupId>gov.va.med.edp</groupId>
     6                <artifactId>edis-tracking-parent</artifactId>
     7                <version>1.0.1.WorldVistA-SNAPSHOT</version>
     8                <relativePath>../tracking-parent</relativePath>
     9        </parent>
     10        <groupId>gov.va.med.edp</groupId>
     11        <artifactId>edis-tracking-ui-bigboard</artifactId>
     12        <packaging>swf</packaging>
     13        <name>EDIS Tracking UI Big Board</name>
     14        <version>1.0.1.WorldVistA-SNAPSHOT</version>
     15        <dependencies>
     16                <dependency>
     17                        <groupId>gov.va.med.edp</groupId>
     18                        <artifactId>edis-tracking-ui-core</artifactId>
     19                        <version>${project.version}</version>
     20                        <type>swc</type>
     21                </dependency>
     22        </dependencies>
     23        <build>
     24                <sourceDirectory>src/main/flex</sourceDirectory>
     25                <resources>
     26                        <resource>
     27                                <directory>src/main/resources</directory>
     28                                <filtering>true</filtering>
     29                        </resource>
     30                </resources>
     31                <plugins>
     32                        <plugin>
     33                                <groupId>org.sonatype.flexmojos</groupId>
     34                                <artifactId>flexmojos-maven-plugin</artifactId>
     35                                <version>${flex.mojos.version}</version>
     36                                <extensions>true</extensions>
     37                                <configuration>
     38                                        <sourceFile>bigboard.mxml</sourceFile>
     39                                </configuration>
     40                        </plugin>
     41                </plugins>
     42        </build>
    3943</project>
Note: See TracChangeset for help on using the changeset viewer.