petals-plugin-maven-jbi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.objectweb.petals</groupId> <artifactId>petals-plugin-maven-jbi</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- PETALS: PETALS Services Platform Copyright (C) 2005-2006 EBM WebSourcing 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. Initial developer(s): EBM WebSourcing --> <!-- $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> <!-- ============== --> <!-- Identification --> <!-- ============== --> <parent> <artifactId>petals-plugins</artifactId> <groupId>org.objectweb.petals</groupId> <relativePath>../pom.xml</relativePath> <version>1</version> </parent> <groupId>org.objectweb.petals</groupId> <name>Petals Plugins :: Maven JBI</name> <artifactId>petals-plugin-maven-jbi</artifactId> <description>This project is Maven 2 plugin used to make a JBI archive of a JBI component project.</description> <packaging>maven-plugin</packaging> <version>1.2</version> <dependencies> <dependency> <groupId>javax.jbi</groupId> <artifactId>jbi</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0.4</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.4</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-embedder</artifactId> <version>2.0.4</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>petals-tools-jbi</goalPrefix> </configuration> </plugin> <!-- SITE PLUGIN --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${site.version}</version> <configuration> <generateReports>true</generateReports> <addModules>true</addModules> <stagingDirectory>${basedir}/../../target/staged-site</stagingDirectory> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/petals/tags/petals-plugin-maven-jbi-1.2</connection> <developerConnection>scm:svn:svn+ssh://chamerling@svn.forge.objectweb.org/svnroot/petals/tags/petals-plugin-maven-jbi-1.2</developerConnection> <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/petals/petals-plugins/petals-plugin-maven-jbi/tags/petals-plugin-maven-jbi-1.2</url> </scm> </project>