sirocco-cloudmanager-dashboard-swf
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.sirocco.cloudmanager</groupId> <artifactId>sirocco-cloudmanager-dashboard-swf</artifactId> <version>0.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- SIROCCO Copyright (C) 2012 France Telecom Contact: sirocco@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 --> <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.sirocco.cloudmanager</groupId> <artifactId>sirocco-cloudmanager-dashboard</artifactId> <version>0.1.1</version> </parent> <groupId>org.ow2.sirocco.cloudmanager</groupId> <artifactId>sirocco-cloudmanager-dashboard-swf</artifactId> <packaging>swf</packaging> <name>SIROCCO :: CloudManager :: Dashboard: Flex :: SWF</name> <repositories> <repository> <id>flexmojos-repository</id> <url>http://repository.sonatype.org/content/groups/flexgroup/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>flexmojos-repository-plugin</id> <name>FlexMojos repository on Sonatype.org</name> <url>http://repository.sonatype.org/content/groups/flexgroup/</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>flex-framework</artifactId> <version>${flex.version}</version> <type>pom</type> </dependency> <dependency> <groupId>com.adobe.cairngorm</groupId> <artifactId>cairngorm-bin</artifactId> <version>2.2.1</version> <type>swc</type> </dependency> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-essentials-swc</artifactId> <version>${graniteds.version}</version> <type>swc</type> <scope>internal</scope> </dependency> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-swc</artifactId> <version>${graniteds.version}</version> <type>swc</type> </dependency> <dependency> <groupId>com.parsley</groupId> <artifactId>parsley-core</artifactId> <version>3.0.0</version> <type>swc</type> </dependency> <dependency> <groupId>com.parsley</groupId> <artifactId>parsley-flex</artifactId> <version>3.0.0</version> <type>swc</type> </dependency> <dependency> <groupId>com.spicelib</groupId> <artifactId>spicelib-commands</artifactId> <version>3.1.1</version> <type>swc</type> </dependency> <dependency> <groupId>com.spicelib</groupId> <artifactId>spicelib-reflect</artifactId> <version>3.0.0</version> <type>swc</type> </dependency> <dependency> <groupId>com.spicelib</groupId> <artifactId>spicelib-util</artifactId> <version>3.1.0</version> <type>swc</type> </dependency> <dependency> <groupId>org.ow2.sirocco.cloudmanager</groupId> <artifactId>sirocco-cloudmanager-model-cimi</artifactId> <version>${sirocco-cloudmanager.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/flex</sourceDirectory> <plugins> <plugin> <groupId>org.sonatype.flexmojos</groupId> <artifactId>flexmojos-maven-plugin</artifactId> <version>${flexmojos.version}</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <includeJavaClasses> <includeClass>*cimi*</includeClass> </includeJavaClasses> </configuration> </execution> </executions> <configuration> <compiledLocales> <locale>en_US</locale> <locale>fr_FR</locale> </compiledLocales> <mergeResourceBundle>true</mergeResourceBundle> <contextRoot>${product.name}</contextRoot> <services>../sirocco-flex-war/src/main/webapp/WEB-INF/flex/services-config.xml</services> <sourceFile>Main.mxml</sourceFile> </configuration> <dependencies> <dependency> <groupId>com.adobe.flex</groupId> <artifactId>compiler</artifactId> <version>${flex.version}</version> <type>pom</type> </dependency> </dependencies> </plugin> </plugins> </build> </project>