console-module-builder-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder-server</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">
<parent>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder</artifactId>
<version>2.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>JOnAS Console :: Modules :: Builder :: Server</name>
<packaging>bundle</packaging>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder-server</artifactId>
<properties>
<jonas.autostart.version>1.0.0-M2</jonas.autostart.version>
<commons-fileupload.version>1.2.2</commons-fileupload.version>
</properties>
<dependencies>
<dependency>
<groupId>org.ow2.util.log</groupId>
<artifactId>log-api</artifactId>
<version>${log-api.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.kerneos</groupId>
<artifactId>kerneos-core-api</artifactId>
<version>${kerneos.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ow2.kerneos.graniteds</groupId>
<artifactId>granite-core</artifactId>
<version>${graniteds.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.ipojo.annotations</artifactId>
<version>${ipojo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ow2.jonas</groupId>
<artifactId>jonas-management-extensions</artifactId>
<version>${jonas.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ow2.jonas.autostart</groupId>
<artifactId>utility</artifactId>
<version>${jonas.autostart.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.jonas.autostart</groupId>
<artifactId>parser</artifactId>
<version>${jonas.autostart.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.jonas.autostart</groupId>
<artifactId>builder</artifactId>
<version>${jonas.autostart.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.jonas</groupId>
<artifactId>jonas-commands</artifactId>
<version>${jonas.version}</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.ow2.spec.ee</groupId>
<artifactId>ow2-servlet-3.0-spec</artifactId>
<version>${ow2.spec.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${commons-fileupload.version}</version>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.ow2.jonas.admin</groupId>
<artifactId>console-module-builder-client</artifactId>
<version>${project.version}</version>
<type>swf</type>
<overWrite>true</overWrite>
<destFileName>builder.swf</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/resources</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Kerneos-Module>${project.artifactId}-${project.version}</Kerneos-Module>
<Include-Resource>
src/main/resources,
KERNEOS=src/main/kerneos,
KERNEOS=${project.build.directory}/resources
</Include-Resource>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-ipojo-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>