swc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>swc</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>modules</artifactId>
<version>1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>swc</artifactId>
<packaging>swc</packaging>
<name>JOnAS Admin Flex :: Modules :: SWC</name>
<description>Flex librairies</description>
<dependencies>
<dependency>
<groupId>com.adobe.cairngorm</groupId>
<artifactId>cairngorm-bin</artifactId>
<type>swc</type>
</dependency>
</dependencies>
<build>
<plugins>
<!-- workaround for israfil mojo issue
http://groups.google.com/group/israfil-mojo-issues/browse_thread/thread/36573ef0111e556c/f6647c653131ab28
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${mv-dep-plugin.version}</version>
</plugin>
<plugin>
<groupId>net.israfil.mojo</groupId>
<artifactId>maven-flex2-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>