Maven Repository - POM file for RDF aperture-rdf 1.4.0 1.4.0

Summary

Aperture Core: RDF.

RDF model and utilities.

Declaration

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

<dependency>
   <groupId>org.semanticdesktop.aperture</groupId>
   <artifactId>aperture-rdf</artifactId>
   <version>1.4.0</version>
</dependency>

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

Plugin

The following plugins are used in the aperture-rdf-1.4.0.jar

  1. maven-bundle-plugin




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.semanticdesktop.aperture</groupId>
    <artifactId>aperture-core</artifactId>
    <version>1.4.0</version>
  </parent>

  <artifactId>aperture-rdf</artifactId>
  <packaging>bundle</packaging>

  <name>Aperture Core: RDF</name>
  <description>RDF model and utilities</description>
  
  <dependencies>
    <dependency>
      <groupId>org.semanticdesktop.aperture</groupId>
      <artifactId>aperture-util</artifactId>
    </dependency>
    <dependency>
      <groupId>org.semanticdesktop.aperture</groupId>
      <artifactId>aperture-vocabulary-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.semanticdesktop.aperture</groupId>
      <artifactId>aperture-runtime-optional</artifactId>
      <scope>test</scope>
      <type>pom</type>
    </dependency>
    
    <dependency>
      <groupId>org.semweb4j</groupId>
      <artifactId>rdf2go.api</artifactId>
    </dependency>
      <!-- 
      <dependency>
      <groupId>org.semweb4j</groupId>
      <artifactId>rdf2go.impl.base</artifactId>
      </dependency>
    -->
    <dependency>
      <groupId>info.aduna.commons</groupId>
      <artifactId>aduna-commons-xml</artifactId>
    </dependency>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
  </dependencies>
  
  <build>
    <plugins>
      <plugin>   
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>${maven.bundle.plugin.version}</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Export-Package>org.semanticdesktop.aperture.rdf,org.semanticdesktop.aperture.rdf.impl,org.semanticdesktop.aperture.rdf.util</Export-Package>
            <Import-Package>info.aduna.xml;version=0,*</Import-Package>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>    
      
</project>