console-module-builder-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder-client</artifactId>
<version>2.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- JOnAS: Java(TM) Open Application Server
- Copyright (C) 2011 Bull S.A.S.
- Contact: jonas-team@ow2.org
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- USA
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $Id$
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-->
<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>
<parent>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder</artifactId>
<version>2.0.2</version>
</parent>
<name>JOnAS Console :: Modules :: Builder :: Client</name>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder-client</artifactId>
<packaging>swf</packaging>
<dependencies>
<!-- Flex dependencies -->
<!-- Kerneos Flex -->
<dependency>
<groupId>org.ow2.kerneos</groupId>
<artifactId>kerneos-flex-client</artifactId>
<version>${kerneos.version}</version>
<type>xml</type>
<classifier>link-report</classifier>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>halo</artifactId>
<version>${flex.version}</version>
<classifier>theme</classifier>
<type>swc</type>
<scope>theme</scope>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>spark</artifactId>
<version>${flex.version}</version>
<classifier>theme</classifier>
<type>css</type>
<scope>theme</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/flex</sourceDirectory>
<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<configuration>
<resourceBundlePath>${project.build.directory}/../src/main/locales/{locale}</resourceBundlePath>
<mergeResourceBundle>true</mergeResourceBundle>
<contextRoot>jonas-console</contextRoot>
<sourceFile>Builder.mxml</sourceFile>
</configuration>
</plugin>
</plugins>
<finalName>builder</finalName>
</build>
</project>