Maven Repository - POM file for Library metadata-extractor 2.6.2 2.6.2

Summary

metadata-extractor.

Java library for reading metadata from image files..

Declaration

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

<dependency>
   <groupId>com.drewnoakes</groupId>
   <artifactId>metadata-extractor</artifactId>
   <version>2.6.2</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The metadata-extractor-2.6.2 has 3 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
ParserxercesImpl 2.8.1
Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to ...
101
JUnitjunit 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919




Plugin

The following plugins are used in the metadata-extractor-2.6.2.jar

  1. maven-compiler-plugin
  2. maven-source-plugin

Packages

The following packages are defined in the metadata-extractor-2.6.2.jar

com.drew.imaging
com.drew.imaging.jpeg
com.drew.imaging.psd
com.drew.imaging.tiff
com.drew.lang
com.drew.lang.annotations
com.drew.metadata
com.drew.metadata.adobe
com.drew.metadata.exif
com.drew.metadata.icc
com.drew.metadata.iptc
com.drew.metadata.jfif
com.drew.metadata.jpeg
com.drew.metadata.photoshop
com.drew.metadata.xmp




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>com.drewnoakes</groupId>
    <artifactId>metadata-extractor</artifactId>
    <version>2.6.2</version>
    <packaging>jar</packaging>

    <name>metadata-extractor</name>
    <description>Java library for reading metadata from image files.</description>
    <url>http://code.google.com/p/metadata-extractor/</url>
    
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    
    <scm>
        <connection>scm:git:https://code.google.com/r/raygauss-metadata-extractor/</connection>
        <developerConnection>scm:git:https://code.google.com/r/raygauss-metadata-extractor/</developerConnection>
        <url>https://code.google.com/r/raygauss-metadata-extractor/</url>
    </scm>
    
    

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.adobe.xmp</groupId>
            <artifactId>xmpcore</artifactId>
            <version>5.1.2</version>
        </dependency>
        
        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
            <version>2.8.1</version>
        </dependency>                
        
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                  <source>1.5</source>
                  <target>1.5</target>
                </configuration>
            </plugin>        
        </plugins>
    </build>
</project>