petals-component-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.objectweb.petals</groupId>
<artifactId>petals-component-framework</artifactId>
<version>2.0.1</version>
</dependency><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>
<artifactId>petals-parent</artifactId>
<groupId>org.objectweb.petals</groupId>
<version>6</version>
</parent>
<name>Petals :: Component Framework</name>
<artifactId>petals-component-framework</artifactId>
<groupId>org.objectweb.petals</groupId>
<packaging>jar</packaging>
<version>2.0.1</version>
<description>
The PEtALS component framework. This framework is used to easily
create JBI 1.0 compliant components.
</description>
<properties>
<activation.version>1.1</activation.version>
<wsdl4j.version>1.6.1</wsdl4j.version>
<junit.version>3.8.1</junit.version>
<jbi.version>1.0</jbi.version>
<topDirectoryLocation>..</topDirectoryLocation>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId>
</dependency>
<dependency>
<groupId>org.objectweb.petals</groupId>
<artifactId>petals-jbi-descriptor</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.objectweb.petals</groupId>
<artifactId>petals-jbiapi-mock</artifactId>
<version>0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.jbi</groupId>
<artifactId>jbi</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
<version>1.6.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<descriptors>
<descriptor>
src/main/assembly/component-framework.xml
</descriptor>
</descriptors>
</configuration>
</plugin>
<!-- JAR PLUGIN -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<!--
<index>true</true>
-->
<manifest>
<addClasspath>true</addClasspath>
<addExtensions />
<classpathPrefix />
</manifest>
<manifestEntries>
<mode>development</mode>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/petals/tags/petals-component-framework-2.0.1</connection>
<developerConnection>scm:svn:svn+ssh://chamerling@svn.forge.objectweb.org/svnroot/petals/tags/petals-component-framework-2.0.1</developerConnection>
<url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/petals/tags/petals-component-framework-2.0.1</url>
</scm>
</project>