Maven Repository - POM file for MIME aperture-mime-identifier-magic 1.4.0 1.4.0

Summary

Aperture Core: Mime Identifier - Magic.

Mime-type Identifier implementation based on magic numbers..

Declaration

Here is the list of declaration for aperture-mime-identifier-magic. 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-mime-identifier-magic</artifactId>
   <version>1.4.0</version>
</dependency>

If you think this Maven repository POM file listing for aperture-mime-identifier-magic 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-mime-identifier-magic-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-mime-identifier</artifactId>
    <version>1.4.0</version>
  </parent>

  <artifactId>aperture-mime-identifier-magic</artifactId>
  <packaging>bundle</packaging>

  <name>Aperture Core: Mime Identifier - Magic</name>
  <description>Mime-type Identifier implementation based on magic numbers.</description>

  <dependencies>
    <dependency>
      <groupId>org.semanticdesktop.aperture</groupId>
      <artifactId>aperture-mime-identifier-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.semanticdesktop.aperture</groupId>
      <artifactId>aperture-util</artifactId>
    </dependency>
    <dependency>
      <groupId>org.semanticdesktop.aperture</groupId>
      <artifactId>aperture-testdocs</artifactId>
      <scope>test</scope>
    </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.osgi</groupId>
      <artifactId>osgi_R4_core</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.mime.identifier.magic</Export-Package>
            <Private-Package>org.semanticdesktop.aperture.mime.identifier.magic.bundle</Private-Package>
            <Bundle-Activator>org.semanticdesktop.aperture.mime.identifier.magic.bundle.MagicMimeIdentifierActivator</Bundle-Activator>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>    
</project>