deployme
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.jasmine</groupId>
<artifactId>deployme</artifactId>
<version>2.0-M1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- JASMINe Deploy ME [Managed Element]
- Copyright (C) 2008-2011 Bull S.A.S.
- Copyright (C) 2008 France Telecom R&D
- Contact: jasmine@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: pom.xml 10133 2012-11-13 13:34:43Z albertil $
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-->
<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</groupId>
<artifactId>ow2</artifactId>
<version>1.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.jasmine</groupId>
<artifactId>deployme</artifactId>
<version>2.0-M1</version>
<packaging>pom</packaging>
<name>JASMINe :: Deploy ME</name>
<description>
DeployME is a command-line tool which allows you to deploy middlewares described in an XML file. This file can be generated
with JASMINe Design or written manually using the Deploy ME XSDs.
</description>
<url>http://jasmine.ow2.org/</url>
<developers />
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
</license>
</licenses>
<properties>
<cxf-dosgi.version>1.2</cxf-dosgi.version>
<jonas53.version>5.3.0-M7</jonas53.version>
<jonas53.root>${project.build.directory}/jonas-full-${jonas53.version}</jonas53.root>
<micro.jonas53.root>${project.build.directory}/micro-jonas-${jonas53.version}</micro.jonas53.root>
<ipojo.version>1.8.0</ipojo.version>
<ow2-bundles.version>1.0.34</ow2-bundles.version>
<xerces.version>2.9.1</xerces.version>
<jdk.version>1.6</jdk.version>
<osgi.version>4.2.0</osgi.version>
<ow2.spec.version>1.0.2</ow2.spec.version>
<maven-compiler.version>2.3.2</maven-compiler.version>
<ipojo-maven-plugin.version>1.8.0</ipojo-maven-plugin.version>
<jasmine-agent.version>1.1.1-M2</jasmine-agent.version>
<!-- for tests -->
<testng.version>6.1.1</testng.version>
<maven.plugin.testing.harness.version>1.1</maven.plugin.testing.harness.version>
<maven.surefire.version>2.8</maven.surefire.version>
<maven.site.plugin>3.0</maven.site.plugin>
<!-- Maven (for plugins, etc) -->
<maven.version>2.0.9</maven.version>
<maven.bundle.plugin.version>2.3.7</maven.bundle.plugin.version>
<!-- Versions for each component should be the same than in jonas -->
<ow2.jonas.configurator.version>1.3.6</ow2.jonas.configurator.version>
<ow2.util.xml.version>1.0.9</ow2.util.xml.version>
<karaf.version>2.2.8</karaf.version>
<felix.framework.version>1.8.0</felix.framework.version>
<felix-shell.version>1.4.0</felix-shell.version>
<ipojo-bnd-plugin.version>1.8.4</ipojo-bnd-plugin.version>
<maven.ipojo.annotations.version>1.6.0</maven.ipojo.annotations.version>
<jaxb.version>2.2.5</jaxb.version>
<jaxb-api.version>${jaxb.version}</jaxb-api.version>
<jaxb-impl.version>${jaxb.version}</jaxb-impl.version>
</properties>
<modules>
<module>api</module>
<module>core</module>
<module>modules</module>
<module>extensions</module>
<module>command</module>
<module>maven-plugin</module>
<module>itests</module>
<module>samples</module>
</modules>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<forkMode>never</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven.bundle.plugin.version}</version>
<extensions>true</extensions>
<inherited>true</inherited>
<configuration>
<instructions>
<_include>-target/classes/META-INF/${project.artifactId}.bnd</_include>
<_plugin>org.apache.felix.ipojo.bnd.PojoizationPlugin;metadata=${basedir}/src/main/resources/metadata.xml;use-local-schemas=true</_plugin>
</instructions>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>bnd-ipojo-plugin</artifactId>
<version>${ipojo-bnd-plugin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.8.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/jasmine/jasmine-deploy-me/tags/deployme-2.0-M1</connection>
<developerConnection>scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/jasmine/jasmine-deploy-me/tags/deployme-2.0-M1</developerConnection>
<url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/jasmine/jasmine-deploy-me/tags/deployme-2.0-M1</url>
</scm>
</project>