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-parent/pom.xml

    r1227 r1235  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<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         <groupId>gov.va.med.edp</groupId>
    6         <artifactId>edis-tracking-parent</artifactId>
    7         <packaging>pom</packaging>
    8         <name>EDIS Tracking Application</name>
    9         <description>Emergency Department Integration Software - Tracking Application</description>
    10         <version>1.0-T29-SNAPSHOT</version>
    11         <modules>
    12                 <module>../tracking-ui-core</module>
    13                 <module>../tracking-ui-main</module>
    14                 <module>../tracking-ui-bigboard</module>
    15                 <module>../tracking-server-core</module>
    16                 <module>../tracking-server-main</module>
    17                 <module>../tracking-server-bigboard</module>
    18                 <module>../tracking-help</module>
    19                 <module>../tracking-weblogic-ssl</module>
    20                 <module>../tracking-ear</module>
    21         </modules>
    22         <organization>
    23                 <name>Department of Veterans Affairs</name>
    24                 <url>http://www.va.gov/</url>
    25         </organization>
    26         <prerequisites>
    27                 <maven>2.0.8</maven>
    28         </prerequisites>
    29         <licenses>
    30                 <license>
    31                         <name>Public Domain</name>
    32                         <url>http://creativecommons.org/licenses/publicdomain/</url>
    33                 </license>
    34         </licenses>
    35         <scm>
    36                 <connection>scm:perforce://reeng/main/ed/tracking-parent</connection>
    37                 <developerConnection>scm:perforce://reeng/main/ed/tracking-parent</developerConnection>
    38         </scm>
    39         <!--issueManagement>
    40                         <system></system>
    41                         <url></url>
    42                 </issueManagement-->
    43         <!-- <ciManagement>
    44                    <system>luntbuild</system>
    45                    <url>http://vhaislcfgm2.vha.med.va.gov:8080/luntbuild</url>
    46            </ciManagement> -->
    47         <developers>
    48                 <developer>
    49                         <id>vhaislmeldruk</id>
    50                         <name>Kevin Meldrum</name>
    51                         <email>kevin.meldrum@va.gov</email>
    52                         <organization>Department of Veterans Affairs</organization>
    53                         <timezone>-7</timezone>
    54                 </developer>
    55                 <developer>
    56                         <id>vhaislgearys</id>
    57                         <name>Sandi Geary</name>
    58                         <email>sandra.geary@va.gov</email>
    59                         <organization>SAIC</organization>
    60                         <timezone>-7</timezone>
    61                 </developer>
    62                 <developer>
    63                         <name>Melanie Buechler</name>
    64                         <email>melanie.buechler@va.gov</email>
    65                         <organization>Department of Veterans Affairs</organization>
    66                         <timezone>-6</timezone>
    67                 </developer>
    68                 <developer>
    69                         <id>vhaislblazs</id>
    70                         <name>Solomon Blaz</name>
    71                         <email>solomon.blaz@va.gov</email>
    72                         <organization>SAIC</organization>
    73                         <timezone>-7</timezone>
    74                 </developer>
    75                 <developer>
    76                         <id>vhaisldhars</id>
    77                         <name>Sanjay Dhar</name>
    78                         <email>sanjay.dhar@va.gov</email>
    79                         <organization>SAIC</organization>
    80                         <timezone>-7</timezone>
    81                 </developer>
    82         </developers>
    83         <contributors>
    84                 <contributor>
    85                         <name>Gary Tyndall</name>
    86                         <email>gary.tyndall@va.gov</email>
    87                         <organization>Department of Veterans Affairs</organization>
    88                         <timezone>-5</timezone>
    89                 </contributor>
    90                 <contributor>
    91                         <name>Robert Stults</name>
    92                         <email>robert.stults2@va.gov</email>
    93                         <organization>Shoulders Corp</organization>
    94                         <organizationUrl>http://www.shoulderscorp.com/</organizationUrl>
    95                         <timezone>-5</timezone>
    96                 </contributor>
    97                 <contributor>
    98                         <name>Cheryl Walton</name>
    99                         <email>cheryl.walton2@va.gov</email>
    100                         <organization>SAIC</organization>
    101                         <timezone>-7</timezone>
    102                 </contributor>
    103         </contributors>
    104         <repositories>
    105                 <repository>
    106                         <id>central</id>
    107                         <url>http://repo1.maven.org/maven2</url>
    108                 </repository>
    109                 <repository>
    110                         <id>bob-repository</id>
    111                         <name>Bob's Maven Repository</name>
    112                         <url>http://vhaislcfgm2.vha.med.va.gov/maven-repository</url>
    113                 </repository>
    114                 <repository>
    115                         <id>Codehaus Snapshots</id>
    116                         <url>http://snapshots.repository.codehaus.org/</url>
    117                         <snapshots>
    118                                 <enabled>true</enabled>
    119                         </snapshots>
    120                         <releases>
    121                                 <enabled>false</enabled>
    122                         </releases>
    123                 </repository>
    124                 <repository>
    125                         <id>flex-mojos-repository</id>
    126                         <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
    127                 </repository>           
    128         </repositories>
    129         <pluginRepositories>
    130                 <pluginRepository>
    131                         <id>Codehaus Snapshots</id>
    132                         <url>http://snapshots.repository.codehaus.org/</url>
    133                         <snapshots>
    134                                 <enabled>true</enabled>
    135                         </snapshots>
    136                         <releases>
    137                                 <enabled>false</enabled>
    138                         </releases>
    139                 </pluginRepository>
    140                 <pluginRepository>
    141                         <id>flex-mojos-repository</id>
    142                         <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
    143                         <releases>
    144                                 <enabled>true</enabled>
    145                         </releases>
    146                         <snapshots>
    147                                 <enabled>false</enabled>
    148                         </snapshots>
    149                 </pluginRepository>
    150         </pluginRepositories>
    151         <distributionManagement>
    152                 <repository>
    153                         <id>bob-repository</id>
    154                         <name>Bob's Maven Repository</name>
    155                         <url>scp://vhaislcfgm2.vha.med.va.gov:/var/www/html/maven-repository</url>
    156                 </repository>
    157         </distributionManagement>
    158         <build>
    159                 <pluginManagement>
    160                         <plugins>
    161                                 <plugin>
    162                                         <artifactId>maven-compiler-plugin</artifactId>
    163                                         <configuration>
    164                                                 <source>1.4</source>
    165                                                 <target>1.4</target>
    166                                         </configuration>
    167                                 </plugin>
    168                                 <plugin>
    169                                         <artifactId>maven-eclipse-plugin</artifactId>
    170                                         <configuration>
    171                                                 <downloadSources>true</downloadSources>
    172                                                 <downloadJavadocs>true</downloadJavadocs>
    173                                         </configuration>
    174                                 </plugin>
    175                                 <plugin>
    176                                         <artifactId>maven-idea-plugin</artifactId>
    177                                         <configuration>
    178                                                 <downloadSources>true</downloadSources>
    179                                                 <downloadJavadocs>true</downloadJavadocs>
    180                                                 <dependenciesAsLibraries>true</dependenciesAsLibraries>
    181                                                 <useFullNames>false</useFullNames>
    182                                         </configuration>
    183                                 </plugin>
    184                                 <plugin>
    185                                         <groupId>info.flex-mojos</groupId>
    186                                         <artifactId>flex-compiler-mojo</artifactId>
    187                                         <version>${flex.mojos.version}</version>
    188                                         <extensions>true</extensions>
    189                                         <configuration>
    190                                                 <accessible>${flex.compiler.accessible}</accessible>
    191                                                 <headlessServer>${flex.compiler.headless-server}</headlessServer>
    192                                                 <locales>
    193                                                         <locale>en_US</locale>
    194                                                 </locales>
    195                                                 <debug>${flex.compiler.debug}</debug>
    196                                         </configuration>
    197                                         <dependencies>
    198                                                 <dependency>
    199                                                         <groupId>com.adobe.flex</groupId>
    200                                                         <artifactId>compiler</artifactId>
    201                                                         <version>${flex.version}</version>
    202                                                         <type>pom</type>
    203                                                 </dependency>
    204                                         </dependencies>
    205                                 </plugin>
    206                         </plugins>
    207                 </pluginManagement>
    208         </build>
    209         <reporting>
    210                 <plugins>
    211                         <plugin>
    212                                 <groupId>org.apache.maven.plugins</groupId>
    213                                 <artifactId>maven-project-info-reports-plugin</artifactId>
    214                                 <reportSets>
    215                                         <reportSet>
    216                                                 <reports>
    217                                                         <report>index</report>
    218                                                         <report>summary</report>
    219                                                         <report>dependency-convergence</report>
    220                                                         <report>project-team</report>
    221                                                         <report>cim</report>
    222                                                         <report>scm</report>
    223                                                         <report>license</report>
    224                                                 </reports>
    225                                         </reportSet>
    226                                 </reportSets>
    227                         </plugin>
    228                         <plugin>
    229                                 <artifactId>maven-changes-plugin</artifactId>
    230                         </plugin>
    231                         <plugin>
    232                                 <artifactId>maven-checkstyle-plugin</artifactId>
    233                         </plugin>
    234                         <plugin>
    235                                 <groupId>org.codehaus.mojo</groupId>
    236                                 <artifactId>cobertura-maven-plugin</artifactId>
    237                         </plugin>
    238                         <plugin>
    239                                 <artifactId>maven-javadoc-plugin</artifactId>
    240                         </plugin>
    241                         <plugin>
    242                                 <artifactId>maven-jxr-plugin</artifactId>
    243                         </plugin>
    244                         <plugin>
    245                                 <artifactId>maven-pmd-plugin</artifactId>
    246                         </plugin>
    247                         <plugin>
    248                                 <artifactId>maven-surefire-report-plugin</artifactId>
    249                         </plugin>
    250                 </plugins>
    251         </reporting>
    252         <properties>
    253                 <!-- versions of dependencies -->
    254                 <spring.version>2.0.8</spring.version>
    255                 <vha.stddata.version>15.0</vha.stddata.version>
    256                 <spring.security.version>2.0.3</spring.security.version>
    257                 <slf4j.version>1.5.2</slf4j.version>
    258                 <easymock.version>2.4</easymock.version>
    259                
    260                 <flex.version>3.1.0.2710</flex.version>
    261                 <flexunit.version>0.85</flexunit.version>
     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    <groupId>gov.va.med.edp</groupId>
     6    <artifactId>edis-tracking-parent</artifactId>
     7    <version>1.0.1.WorldVistA-SNAPSHOT</version>
     8    <packaging>pom</packaging>
     9    <name>EDIS Tracking Application</name>
     10    <description>Emergency Department Integration Software - Tracking Application</description>
     11    <modules>
     12        <module>../tracking-ui-core</module>
     13        <module>../tracking-ui-main</module>
     14        <module>../tracking-ui-bigboard</module>
     15        <module>../tracking-server-vista</module>
     16        <module>../tracking-server-core</module>
     17        <module>../tracking-server-main</module>
     18        <module>../tracking-server-bigboard</module>
     19        <!--<module>../tracking-help</module>-->
     20        <module>../tracking-ear</module>
     21    </modules>
     22    <organization>
     23        <name>WorldVistA</name>
     24        <url>http://www.worldvista.org/</url>
     25    </organization>
     26    <prerequisites>
     27        <maven>3.0.3</maven>
     28    </prerequisites>
     29    <licenses>
     30        <license>
     31            <name>GNU General Public License (GPL) Version 2</name>
     32            <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
     33        </license>
     34    </licenses>
     35    <scm>
     36        <connection>https://trac.opensourcevista.net/svn/EDIS/trunk/java/tracking-parent</connection>
     37    </scm>
     38    <issueManagement>
     39        <system>Trac</system>
     40        <url>https://trac.opensourcevista.net/</url>
     41    </issueManagement>
     42    <repositories>
     43        <repository>
     44            <id>central</id>
     45            <url>http://repo1.maven.org/maven2</url>
     46        </repository>
     47        <repository>
     48            <id>maven2-repository.dev.java.net</id>
     49            <name>Java.net Repository for Maven</name>
     50            <url>http://download.java.net/maven/2/</url>
     51            <layout>default</layout>
     52        </repository>
     53        <repository>
     54            <id>Codehaus Snapshots</id>
     55            <url>http://snapshots.repository.codehaus.org/</url>
     56            <snapshots>
     57                <enabled>true</enabled>
     58            </snapshots>
     59            <releases>
     60                <enabled>false</enabled>
     61            </releases>
     62        </repository>
     63        <repository>
     64            <id>flex-mojos-repository</id>
     65            <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
     66            <releases>
     67                <enabled>true</enabled>
     68            </releases>
     69            <snapshots>
     70                <enabled>false</enabled>
     71            </snapshots>
     72        </repository>
     73        <repository>
     74            <id>edis-tracking-maven-repository</id>
     75            <url>file://${basedir}/../tracking-maven-repository</url>
     76            <releases>
     77                <enabled>true</enabled>
     78                <updatePolicy>never</updatePolicy>
     79            </releases>
     80            <snapshots>
     81                <enabled>false</enabled>
     82            </snapshots>
     83        </repository>
     84    </repositories>
     85    <pluginRepositories>
     86        <pluginRepository>
     87            <id>Codehaus Snapshots</id>
     88            <url>http://snapshots.repository.codehaus.org/</url>
     89            <snapshots>
     90                <enabled>true</enabled>
     91            </snapshots>
     92            <releases>
     93                <enabled>false</enabled>
     94            </releases>
     95        </pluginRepository>
     96        <pluginRepository>
     97            <id>flex-mojos-repository</id>
     98            <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
     99            <releases>
     100                <enabled>true</enabled>
     101            </releases>
     102            <snapshots>
     103                <enabled>false</enabled>
     104            </snapshots>
     105        </pluginRepository>
     106    </pluginRepositories>
     107    <build>
     108        <pluginManagement>
     109            <plugins>
     110                <plugin>
     111                    <artifactId>maven-compiler-plugin</artifactId>
     112                    <configuration>
     113                        <source>1.4</source>
     114                        <target>1.4</target>
     115                    </configuration>
     116                </plugin>
     117                <plugin>
     118                    <artifactId>maven-eclipse-plugin</artifactId>
     119                    <configuration>
     120                        <downloadSources>true</downloadSources>
     121                        <downloadJavadocs>true</downloadJavadocs>
     122                    </configuration>
     123                </plugin>
     124                <plugin>
     125                    <artifactId>maven-idea-plugin</artifactId>
     126                    <configuration>
     127                        <downloadSources>true</downloadSources>
     128                        <downloadJavadocs>true</downloadJavadocs>
     129                        <dependenciesAsLibraries>true</dependenciesAsLibraries>
     130                        <useFullNames>false</useFullNames>
     131                    </configuration>
     132                </plugin>
     133                <plugin>
     134                    <groupId>org.sonatype.flexmojos</groupId>
     135                    <artifactId>flexmojos-maven-plugin</artifactId>
     136                    <version>${flex.mojos.version}</version>
     137                    <extensions>true</extensions>
     138                    <configuration>
     139                        <configurationReport>true</configurationReport>
     140                        <targetPlayer>${flex.player.version}</targetPlayer>
     141                        <!--<compatibilityVersion>3.0.0</compatibilityVersion>-->
     142                        <accessible>${flex.compiler.accessible}</accessible>
     143                        <headlessServer>${flex.compiler.headless-server}</headlessServer>
     144                        <compiledLocales>
     145                            <locale>en_US</locale>
     146                        </compiledLocales>
     147                        <keepAs3Metadatas>
     148                            <param>Bindable</param>
     149                            <param>Event</param>
     150                            <param>Managed</param>
     151                            <param>ChangeEvent</param>
     152                            <param>NonCommittingChangeEvent</param>
     153                            <param>Transient</param>
     154                            <param>Inject</param>
     155                            <param>Autowire</param>
     156                            <param>Mediate</param>
     157                            <param>Dispatcher</param>
     158                            <param>PostConstruct</param>
     159                            <param>PreDestroy</param>
     160                        </keepAs3Metadatas>
     161                        <fonts>
     162                            <managers>
     163                                <manager-class>flash.fonts.AFEFontManager</manager-class>
     164                                <manager-class>flash.fonts.JREFontManager</manager-class>
     165                                <manager-class>flash.fonts.BatikFontManager</manager-class>
     166                            </managers>
     167                        </fonts>
     168                        <debug>${flex.compiler.debug}</debug>
     169                        <skipTests>${java.awt.headless}</skipTests>
     170                        <warnings>
     171                            <!-- default to same warnings disabled as in SDK -->
     172                            <!-- Array.toString() format has changed. -->
     173                            <arrayTostringChanges>false</arrayTostringChanges>
     174                            <!-- Boolean() with no arguments returns false in ActionScript 3.0. Boolean() returned undefined in ActionScript 2.0. -->
     175                            <booleanConstructorWithNoArgs>false</booleanConstructorWithNoArgs>
     176                            <!-- __resolve is no longer supported. -->
     177                            <changesInResolve>false</changesInResolve>
     178                            <!-- Class is sealed. It cannot have members added to it dynamically. -->
     179                            <!-- Function used in new expression returns a value. Result will be what the -->
     180                            <!-- function returns, rather than a new instance of that function.           -->
     181                            <constructorReturnsValue>false</constructorReturnsValue>
     182                            <!-- EventHandler was not added as a listener. -->
     183                            <deprecatedEventHandlerError>false</deprecatedEventHandlerError>
     184                            <!-- ActionScript 3.0 iterates over an object's properties within a "for x in target" statement in random order. -->
     185                            <forVarInChanges>false</forVarInChanges>
     186                            <!-- Missing constructor. -->
     187                            <noConstructor>false</noConstructor>
     188                            <!-- The super() statement was not called within the constructor. -->
     189                            <noExplicitSuperCallInConstructor>false</noExplicitSuperCallInConstructor>
     190                            <!-- In ActionScript 3.0, white space is ignored and '' returns 0. Number() returns -->
     191                            <!-- NaN in ActionScript 2.0 when the parameter is '' or contains white space.      -->
     192                            <numberFromStringChanges>false</numberFromStringChanges>
     193                            <!-- Change in scoping for the this keyword. Class methods extracted from an  -->
     194                            <!-- instance of a class will always resolve this back to that instance. In   -->
     195                            <!-- ActionScript 2.0 this is looked up dynamically based on where the method -->
     196                            <!-- is invoked from.                                                         -->
     197                            <scopingChangeInThis>false</scopingChangeInThis>
     198                            <!-- Possible usage of the ActionScript 2.0 XML class. -->
     199                            <xmlClassHasChanged>false</xmlClassHasChanged>
     200                        </warnings>
     201                    </configuration>
     202                    <dependencies>
     203                        <dependency>
     204                            <groupId>com.adobe.flex</groupId>
     205                            <artifactId>compiler</artifactId>
     206                            <version>${flex.version}</version>
     207                            <type>pom</type>
     208                        </dependency>
     209                        <!-- <dependency>
     210                           <groupId>com.adobe.flex.compiler</groupId>
     211                           <artifactId>flex-fontkit</artifactId>
     212                           <version>${flex.version}</version>
     213                       </dependency> -->
     214                        <!--<dependency>-->
     215                        <!--<groupId>com.adobe.flex.compiler</groupId>-->
     216                        <!--<artifactId>asdoc</artifactId>-->
     217                        <!--<version>${flex.version}</version>-->
     218                        <!--<classifier>template</classifier>-->
     219                        <!--<type>zip</type>-->
     220                        <!--</dependency>-->
     221                    </dependencies>
     222                </plugin>
     223            </plugins>
     224        </pluginManagement>
     225    </build>
     226    <reporting>
     227        <plugins>
     228            <plugin>
     229                <groupId>org.apache.maven.plugins</groupId>
     230                <artifactId>maven-project-info-reports-plugin</artifactId>
     231                <version>2.4</version>
     232                <reportSets>
     233                    <reportSet>
     234                        <reports>
     235                            <report>index</report>
     236                            <report>summary</report>
     237                            <report>dependency-convergence</report>
     238                            <report>project-team</report>
     239                            <report>cim</report>
     240                            <report>scm</report>
     241                            <report>license</report>
     242                        </reports>
     243                    </reportSet>
     244                </reportSets>
     245            </plugin>
     246            <plugin>
     247                <artifactId>maven-changes-plugin</artifactId>
     248                <version>2.6</version>
     249            </plugin>
     250            <plugin>
     251                <artifactId>maven-checkstyle-plugin</artifactId>
     252                <version>2.7</version>
     253            </plugin>
     254            <plugin>
     255                <groupId>org.codehaus.mojo</groupId>
     256                <artifactId>cobertura-maven-plugin</artifactId>
     257            </plugin>
     258            <plugin>
     259                <artifactId>maven-javadoc-plugin</artifactId>
     260                <version>2.8</version>
     261            </plugin>
     262            <plugin>
     263                <artifactId>maven-jxr-plugin</artifactId>
     264                <version>2.2</version>
     265            </plugin>
     266            <plugin>
     267                <artifactId>maven-pmd-plugin</artifactId>
     268                <version>2.5</version>
     269            </plugin>
     270            <plugin>
     271                <artifactId>maven-surefire-report-plugin</artifactId>
     272                <version>2.9</version>
     273            </plugin>
     274        </plugins>
     275    </reporting>
     276    <properties>
     277        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    262278
    263                 <!-- flex compiler settings -->
    264                 <flex.mojos.version>2.0.3</flex.mojos.version>
     279        <!-- versions of dependencies -->
     280        <servlet.version>2.5</servlet.version>
     281        <spring.version>2.0.8</spring.version>
     282        <spring.security.version>2.0.3</spring.security.version>
     283        <slf4j.version>1.5.2</slf4j.version>
     284        <easymock.version>2.4</easymock.version>
     285
     286        <flex.version>3.6.0.16995</flex.version>
     287        <flex.player.version>10.0</flex.player.version>
     288        <flexunit.version>0.85</flexunit.version>
     289        <cairngorm.version>2.2.1</cairngorm.version>
     290
     291        <!-- flex compiler settings -->
     292        <flex.mojos.version>3.8</flex.mojos.version>
    265293                <flex.compiler.accessible>true</flex.compiler.accessible>
    266                 <flex.compiler.headless-server>true</flex.compiler.headless-server>
    267                 <flex.compiler.debug>true</flex.compiler.debug>
    268                 <skipTests>${java.awt.headless}</skipTests>
     294        <flex.compiler.headless-server>true</flex.compiler.headless-server>
     295        <flex.compiler.debug>true</flex.compiler.debug>
     296        <!--<skipTests>${java.awt.headless}</skipTests>-->
    269297
    270                 <!-- EDIS project settings -->
    271                 <edis.tracking.trackingContextRoot>/main</edis.tracking.trackingContextRoot>
    272                 <edis.tracking.boardContextRoot>/bigboard</edis.tracking.boardContextRoot>
    273                 <edis.tracking.helpContextRoot>/help</edis.tracking.helpContextRoot>
    274         </properties>
    275         <profiles>
    276                 <profile>
    277                         <id>dev</id>
    278                         <properties>
    279                                 <flex.compiler.debug>true</flex.compiler.debug>
    280                         </properties>
    281                 </profile>
    282         </profiles>
     298        <!-- EDIS project settings -->
     299        <edis.tracking.trackingContextRoot>/main</edis.tracking.trackingContextRoot>
     300        <edis.tracking.boardContextRoot>/bigboard</edis.tracking.boardContextRoot>
     301        <edis.tracking.helpContextRoot>/help</edis.tracking.helpContextRoot>
     302    </properties>
     303    <profiles>
     304        <profile>
     305            <id>dev</id>
     306            <properties>
     307                <flex.compiler.debug>true</flex.compiler.debug>
     308            </properties>
     309        </profile>
     310    </profiles>
    283311</project>
Note: See TracChangeset for help on using the changeset viewer.