Maven Repository - POM file for OSGi tinybundles 1.0.0 1.0.0

Summary

OPS4J Pax Tinybundles.

Tiny Bundles is a library to create and modify adhoc bundles and other OSGi resources using fluent Java API..

Declaration

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

<dependency>
   <groupId>org.ops4j.pax.tinybundles</groupId>
   <artifactId>tinybundles</artifactId>
   <version>1.0.0</version>
</dependency>

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

Depends on

The tinybundles-1.0.0 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
Logslf4j-api 1.6.1
The slf4j API
621
Librarybndlib 1.43.0
A library for manipulating and generating bundles
6
OSGiorg.osgi.core 4.2.0
POM was created by Sonatype Nexus
197
JUnitjunit 4.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1256
Testing Mockmockito-all 1.8.5
Mock objects library for java
434




Depended by

The following table lists the most popular artifacts which are depending on tinybundles-1.0.0. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
OSGiorg.apache.felix.scr 1.8.0
Implementation of the Declarative Services specification 1.2
8
OSGiorg.apache.felix.scr 1.6.2
Implementation of the Declarative Services specification 1.2
57
OSGiorg.apache.felix.scr 1.8.2
Implementation of the Declarative Services specification 1.2
5

Plugin

The following plugins are used in the tinybundles-1.0.0.jar

  1. maven-bundle-plugin
  2. maven-javadoc-plugin

Packages

The following packages are defined in the tinybundles-1.0.0.jar

org.ops4j.pax.tinybundles.core
org.ops4j.pax.tinybundles.core.intern




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>
        <groupId>org.ops4j.pax</groupId>
        <artifactId>master</artifactId>
        <version>3.1.3</version>
    </parent>

    <groupId>org.ops4j.pax.tinybundles</groupId>
    <artifactId>tinybundles</artifactId>
    <version>1.0.0</version>
    <packaging>bundle</packaging>

    <name>OPS4J Pax Tinybundles</name>

    <url>http://www.ops4j.org/projects/pax/tinybundles</url>

    <scm>
        <connection>scm:git:git://github.com/ops4j/org.ops4j.pax.tinybundles.git</connection>
        <developerConnection>${release-paxurl-altGitTINYBUNDLES}</developerConnection>
        <url>scm:git:https://github.com/ops4j/org.ops4j.pax.tinybundles.git</url>
    </scm>

    <issueManagement>
        <system>jira</system>
        <url>http://issues.ops4j.org/jira/browse/PAXTB</url>
    </issueManagement>

    <properties>
        <release-paxurl-altGitTINYBUNDLES>scm:git:ssh://git@github.com/ops4j/org.ops4j.pax.tinybundles.git</release-paxurl-altGitTINYBUNDLES>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <dependency.base.version>1.2.3-SNAPSHOT</dependency.base.version>
        <bundle.symbolicName>org.ops4j.pax.tinybundles</bundle.symbolicName>
        <bundle.namespace>org.ops4j.pax.tinybundles</bundle.namespace>
    </properties>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.7</version>
                <configuration>
                    <docletArtifact>
                        <groupId>com.google.doclava</groupId>
                        <artifactId>doclava</artifactId>
                        <version>1.0.3</version>
                    </docletArtifact>
                    <doclet>com.google.doclava.Doclava</doclet>
                    <!-- | bootclasspath required by Sun's JVM -->
                    <bootclasspath>${sun.boot.class.path}</bootclasspath>
                    <additionalparam>
                        -quiet
                        <!-- -federate JDK http://download.oracle.com/javase/6/docs/api/index.html? -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml -->
                        -hdf project.name "${project.name}"
                        -d
                        ${project.build.directory}/apidocs
                    </additionalparam>
                    <useStandardDocletOptions>false</useStandardDocletOptions>
                    <!-- | Apple's JVM sometimes requires more memory -->
                    <additionalJOption>-J-Xmx1024m</additionalJOption>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.3.4</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <_include>-osgi.bnd</_include>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>

    </build>

    

    <description>
        Tiny Bundles is a library to create and modify adhoc bundles and other OSGi resources using fluent Java API.
    </description>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.6.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.ops4j.base</groupId>
            <artifactId>ops4j-base-store</artifactId>
            <version>1.2.3</version>
        </dependency>
        <dependency>
            <groupId>biz.aQute</groupId>
            <artifactId>bndlib</artifactId>
            <version>1.43.0</version>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <version>4.2.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
            <version>4.8.1</version>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.8.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <scope>test</scope>
            <version>1.6.1</version>
        </dependency>
    </dependencies>

</project>