Maven Repository - POM file for Development petals-cdk-core 4.0.2 4.0.2

Summary

PEtALS :: Component Development Kit Core Library.

The PEtALS component framework. This framework is used to easily create JBI 1.0 compliant components..

Declaration

Here is the list of declaration for petals-cdk-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.ow2.petals</groupId>
   <artifactId>petals-cdk-core</artifactId>
   <version>4.0.2</version>
</dependency>

If you think this Maven repository POM file listing for petals-cdk-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The petals-cdk-core-4.0.2 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Data Structurecommons-pool 1.3
Commons Object Pooling Library
73
Web Servicewsdl4j 1.6.1
Java stub generator for WSDL
33




Plugin

The following plugins are used in the petals-cdk-core-4.0.2.jar

  1. maven-assembly-plugin
  2. maven-jar-plugin

Packages

The following packages are defined in the petals-cdk-core-4.0.2.jar

org.ow2.petals.component.framework
org.ow2.petals.component.framework.bc
org.ow2.petals.component.framework.interceptor
org.ow2.petals.component.framework.interceptor.description
org.ow2.petals.component.framework.listener
org.ow2.petals.component.framework.mbean
org.ow2.petals.component.framework.message
org.ow2.petals.component.framework.performance
org.ow2.petals.component.framework.se
org.ow2.petals.component.framework.su
org.ow2.petals.component.framework.util




POM File Source

Here is the content of the POM file.

<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.ow2.petals</groupId>
    <version>14</version>
  </parent>
  <name>PEtALS :: Component Development Kit Core Library</name>
  <artifactId>petals-cdk-core</artifactId>
  <groupId>org.ow2.petals</groupId>
  <packaging>jar</packaging>
  <version>4.0.2</version>
  <description> The PEtALS component framework. This framework is used to
    easily create JBI 1.0 compliant components. </description>
    
  <properties>
    <topDirectoryLocation>../..</topDirectoryLocation>
  </properties>

  <!-- Source code management -->
  <scm>
    <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/petals/tags/petals-cdk-core-4.0.2</connection>
    <developerConnection>scm:svn:svn+ssh://rnaudin@svn.forge.objectweb.org/svnroot/petals/tags/petals-cdk-core-4.0.2</developerConnection>
    <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/petals/tags/petals-cdk-core-4.0.2</url>
  </scm>
  
  <dependencies>
    <!--  test dependencies -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymockclassextension</artifactId>
    </dependency>
    <!-- Not used -->
    <!--
      <dependency> <groupId>org.ow2.petals.test</groupId>
      <artifactId>petals-jbiapi-mock</artifactId>
      <version>0.2-SNAPSHOT</version> <scope>test</scope> </dependency>
    -->
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-jbi</artifactId>
      <scope>provided</scope>
    </dependency>

    <!--  runtime dependencies -->
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-cdk-api</artifactId>
      <version>1.0.1</version>
    </dependency>
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-cdk-jbidescriptor</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-activation_1.1_spec</artifactId>
      <version>1.0.2</version>
    </dependency>
    <dependency>
      <groupId>commons-pool</groupId>
      <artifactId>commons-pool</artifactId>
      <version>1.3</version>
    </dependency>
    <dependency>
      <groupId>wsdl4j</groupId>
      <artifactId>wsdl4j</artifactId>
      <version>1.6.1</version>
    </dependency>
    <dependency>
      <groupId>jdom</groupId>
      <artifactId>jdom</artifactId>
      <version>b9</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>
</project>