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

Summary

PEtALS ESB :: Component Development Kit Core Library.

The PEtALS component framework. This framework is used to easily create JBI 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>5.1.1</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-5.1.1 has 4 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
Filecommons-io 1.4
Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes.
444




Plugin

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

  1. maven-jar-plugin

Packages

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

org.ow2.petals.component.framework
org.ow2.petals.component.framework.bc
org.ow2.petals.component.framework.constants
org.ow2.petals.component.framework.interceptor
org.ow2.petals.component.framework.listener
org.ow2.petals.component.framework.mbean
org.ow2.petals.component.framework.message
org.ow2.petals.component.framework.notification
org.ow2.petals.component.framework.notification.filter
org.ow2.petals.component.framework.notification.filter.messagecontent
org.ow2.petals.component.framework.notification.filter.topicexpression
org.ow2.petals.component.framework.notification.notify
org.ow2.petals.component.framework.notification.subscriptionpolicy
org.ow2.petals.component.framework.process
org.ow2.petals.component.framework.process.async
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-components-sls-parent</artifactId>
    <groupId>org.ow2.petals</groupId>
    <version>3</version>
  </parent>
  
  <name>PEtALS ESB :: Component Development Kit Core Library</name>
  <artifactId>petals-cdk-core</artifactId>
  <groupId>org.ow2.petals</groupId>
  <packaging>jar</packaging>
  <version>5.1.1</version>
  <description>The PEtALS component framework. This framework is used to easily create JBI components.</description>

  <scm>
    <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/petals/tags/petals-cdk-core-5.1.1</connection>
    <developerConnection>scm:svn:svn+ssh://rnaudin@svn.forge.objectweb.org/svnroot/petals/tags/petals-cdk-core-5.1.1</developerConnection>
    <url>http://websvn.ow2.org/listing.php?repname=petals&amp;path=%2Ftrunk%2Fcomponents-sls%2Fpetals-cdk-core%2F/tags/petals-cdk-core-5.1.1?repname=petals&amp;path=%2Ftrunk%2Fcomponents-sls%2Fpetals-cdk-core%2F</url>
  </scm>

  <dependencies>
    <!--  test dependencies -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymockclassextension</artifactId>
    </dependency>
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.4</version>
    </dependency>  
      
    <!-- Provided at runtime -->
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-jbi</artifactId>
      <scope>provided</scope>
    </dependency>
       
    <!--  runtime/compile dependencies -->
    <dependency>
      <groupId>commons-pool</groupId>
      <artifactId>commons-pool</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-jta_1.1_spec</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-javamail_1.4_spec</artifactId>
      <version>1.5</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-jbi-ext</artifactId>
    </dependency>
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-cdk-api</artifactId>
      <version>2.1.1</version>
    </dependency>
    <dependency>
      <groupId>org.ow2.petals</groupId>
      <artifactId>petals-commons</artifactId>
    </dependency>
  </dependencies>
  
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Implementation-Title>org.ow2.petals.cdk</Implementation-Title>
              <Implementation-Version>${project.version}</Implementation-Version>
              <Implementation-Vendor>OW2</Implementation-Vendor>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>