Maven Repository - POM file for Document Database org.sakaiproject.nakamura.core 1.4 1.4

Summary

Sparse Map :: Sparse Map Content Storage bundle..

Server that uses a sparse map to represent content mapping closely to a colum database like Cassandra..

Declaration

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

<dependency>
   <groupId>org.sakaiproject.nakamura</groupId>
   <artifactId>org.sakaiproject.nakamura.core</artifactId>
   <version>1.4</version>
</dependency>

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

Depends on

The org.sakaiproject.nakamura.core-1.4 has 14 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.5
Commons Object Pooling Library
5
Data Structurecommons-lang 2.5
Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.
208
Filecommons-io 1.4
Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes.
444
Data Structurecommons-codec 1.4
The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.
248
OSGiguava-osgi 9.0.0
Repackaging of Google Guava libraries as OSGi bundle
5
OSGiorg.osgi.core 1.2.0
OSGi Service Platform Release 4 Core Interfaces and Classes.
25
OSGiorg.osgi.compendium 1.2.0
OSGi Service Platform Release 4 Compendium Interfaces and Classes.
18
Logslf4j-api 1.5.10
The slf4j API
27
Logslf4j-simple 1.5.10
SLF4J Simple binding
8
Testing Mockmockito-all 1.8.5
Mock objects library for java
434
JDBCderby 10.6.2.1
Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.
19
JUnitjunit 4.4
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.
301
Testing Coding Styleannotations 1.0.0
Annotation supports the FindBugs tool
34




Plugin

The following plugins are used in the org.sakaiproject.nakamura.core-1.4.jar

  1. maven-bundle-plugin
  2. maven-install-plugin
  3. maven-jar-plugin
  4. maven-resources-plugin
  5. maven-scr-plugin
  6. maven-surefire-plugin

Packages

The following packages are defined in the org.sakaiproject.nakamura.core-1.4.jar

org.sakaiproject.nakamura.api.lite
org.sakaiproject.nakamura.api.lite.accesscontrol
org.sakaiproject.nakamura.api.lite.authorizable
org.sakaiproject.nakamura.api.lite.content
org.sakaiproject.nakamura.api.lite.lock
org.sakaiproject.nakamura.api.lite.util
org.sakaiproject.nakamura.lite
org.sakaiproject.nakamura.lite.accesscontrol
org.sakaiproject.nakamura.lite.authorizable
org.sakaiproject.nakamura.lite.content
org.sakaiproject.nakamura.lite.http
org.sakaiproject.nakamura.lite.lock
org.sakaiproject.nakamura.lite.storage.jdbc
org.sakaiproject.nakamura.lite.storage.jdbc.migrate
org.sakaiproject.nakamura.lite.storage.mem
org.sakaiproject.nakamura.lite.storage.spi
org.sakaiproject.nakamura.lite.storage.spi.content
org.sakaiproject.nakamura.lite.storage.spi.types




POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<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.sakaiproject.nakamura</groupId>
    <artifactId>core-base</artifactId>
    <version>3</version>
    <!-- force download <relativePath>parent/pom.xml</relativePath> -->
  </parent>
  <groupId>org.sakaiproject.nakamura</groupId>
  <artifactId>org.sakaiproject.nakamura.core</artifactId>
  <packaging>bundle</packaging>
  <version>1.4</version>
  <name>Sparse Map :: Sparse Map Content Storage bundle.</name>
  <description>Server that uses a sparse map to represent content mapping closely to a colum database like Cassandra.</description>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  </properties>
  <scm>
    <connection>scm:git:git://github.com/ieb/sparsemapcontent.git</connection>
    <developerConnection>scm:git:git@github.com:ieb/sparsemapcontent.git</developerConnection>
    <url>http://github.com/ieb/sparsemapcontent/</url>
  </scm>
  <prerequisites>
    <maven>3.0.3</maven>
  </prerequisites>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-scr-plugin</artifactId>
        <executions>
          <execution>
            <id>generate-scr-scrdescriptor</id>
            <goals>
              <goal>scr</goal>
            </goals>
            <configuration>
              <finalName>core-serviceComponents.xml</finalName>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.3.6</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-Category>sparse-map</Bundle-Category>
            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
            <Export-Package>
              org.sakaiproject.nakamura.api.lite.*
                  </Export-Package>
            <Service-Component />
            <DynamicImport-Package>*</DynamicImport-Package>
            <Import-Package>
              *
            </Import-Package>
            <Private-Package>org.sakaiproject.nakamura.lite.*</Private-Package>
          </instructions>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.5</version>
        <executions>
          <execution>
            <id>copy-osgi-resources</id>
            <phase>prepare-package</phase>
            <goals>
              <goal>copy-resources</goal>
            </goals>
            <configuration>
              <outputDirectory>${basedir}/target/classes</outputDirectory>
              <resources>
                <resource>
                  <directory>${basedir}/target/scr-plugin-generated</directory>
                  <filtering>true</filtering>
                </resource>
              </resources>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.2</version>
        <executions>
          <execution>
            <!-- a test jar is needed for fragments -->
            <id>test-jar</id>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <archive>
            <manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
            <manifestEntries>
              <Service-Component>OSGI-INF/core-serviceComponents.xml,OSGI-INF/serviceComponents.xml</Service-Component>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <includes>
            <include>**/Test*.java</include>
            <include>**/*Test.java</include>
            <include>**/*TestCase.java</include>
            <!-- Uncomment includes to enable database specific tests. Ensure you 
              modify the setup java e.g. \src\test\java\org\sakaiproject\nakamura\lite\jdbc\oracle\oraclesetup.java 
              to include your database connection details -->
            <!-- <include>**/oracle/*Man.java</include> -->
            <!-- <include>**/mysql/*Man.java</include> -->
            <!-- <include>**/postgresql/*Man.java</include> -->
          </includes>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-install-plugin</artifactId>
        <version>2.3.1</version>
        <executions>
          <execution>
            <id>install-parent</id>
            <phase>initialize</phase>
            <goals>
              <goal>install-file</goal>
            </goals>
            <configuration>
              <file>parent/pom.xml</file>
              <pomFile>parent/pom.xml</pomFile>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
    </dependency>
    <dependency>
      <groupId>commons-pool</groupId>
      <artifactId>commons-pool</artifactId>
      <version>1.5</version>
    </dependency>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.5</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>1.4</version>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.4</version>
    </dependency>
    <dependency>
      <groupId>com.googlecode.guava-osgi</groupId>
      <artifactId>guava-osgi</artifactId>
      <version>9.0.0</version>
    </dependency>
    <!-- osgi for events -->
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.osgi.core</artifactId>
      <version>1.2.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.osgi.compendium</artifactId>
      <version>1.2.0</version>
      <scope>provided</scope>
    </dependency>

    <!-- We also need slf4j -->
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.5.10</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.5.10</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.8.5</version>
    </dependency>

    <!-- Since we will be running in OSGi we also include the following -->
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.apache.felix.scr.annotations</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derby</artifactId>
      <version>10.6.2.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.4</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>findbugs</groupId>
      <artifactId>annotations</artifactId>
      <version>1.0.0</version>
      <scope>provided</scope>
      <!-- just needed for compiling, not runtime -->
    </dependency>
  </dependencies>
</project>