Mime Detection Utility.
mime-util is a simple to use, small, light weight and fast open source java utility library that can detect MIME types from files, input streams, URL's and byte arrays. Due to the use of regular expressions and the java.nio packages it requires at least Java 1.4..
Here is the list of declaration for mime-util. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>eu.medsea.mimeutil</groupId> <artifactId>mime-util</artifactId> <version>2.1.2</version> </dependency>
If you think this Maven repository POM file listing for mime-util is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The mime-util-2.1.2 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.5.6 The slf4j API | 64 |
Log | slf4j-log4j12 1.5.6 The slf4j log4j-12 binding | 60 |
JUnit | junit 3.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. | 1966 |
The following plugins are used in the mime-util-2.1.2.jar
The following packages are defined in the mime-util-2.1.2.jar
eu.medsea.mimeutil eu.medsea.mimeutil.detector eu.medsea.mimeutil.handler eu.medsea.util
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> <groupId>eu.medsea.mimeutil</groupId> <artifactId>mime-util</artifactId> <packaging>bundle</packaging> <name>Mime Detection Utility</name> <organization> <name>Medsea Business Solutions S.L.</name> <url>http://www.medsea.eu</url> </organization> <properties> <bundle.namespace>eu.medsea</bundle.namespace> </properties> <version>2.1.2</version> <description>mime-util is a simple to use, small, light weight and fast open source java utility library that can detect MIME types from files, input streams, URL's and byte arrays. Due to the use of regular expressions and the java.nio packages it requires at least Java 1.4. </description> <url>http://www.medsea.eu/mime-util/</url> <prerequisites> <maven>2</maven> </prerequisites> <inceptionYear>2007</inceptionYear> <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> <build> <defaultGoal>jar:jar</defaultGoal> <sourceDirectory>src/main/java</sourceDirectory> <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <directory>target</directory> <outputDirectory>target/classes</outputDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory> <finalName>${artifactId}-${version}</finalName> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.0.0</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>${bundle.namespace}.mimeutil,${bundle.namespace}.mimeutil.detector,${bundle.namespace}.mimeutil.handler,${bundle.namespace}.util</Export-Package> <Import-Package>org.slf4j</Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <packageName>eu.medsea.mimeutil</packageName> </manifest> <manifestEntries> <mode>development</mode> <url>${pom.url}</url> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-ant-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <inherited>true</inherited> <executions> <execution> <id>clean</id> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <links> <link>http://java.sun.com/j2se/1.4.2/docs/api/</link> </links> <stylesheet>maven</stylesheet> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> </plugin> <!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <inherited>true</inherited> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.6</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> <scope>runtime</scope> </dependency> </dependencies> <mailingLists> <mailingList> <name>mime-util Users</name> <subscribe>http://lists.sourceforge.net/lists/listinfo/mime-util-user</subscribe> <unsubscribe>http://lists.sourceforge.net/lists/listinfo/mime-util-user</unsubscribe> <archive>http://lists.sourceforge.net/lists/listinfo/mime-util-user</archive> <post>mime-util-user@lists.sourceforge.net</post> </mailingList> <mailingList> <name>mime-util Developers</name> <subscribe>http://lists.sourceforge.net/lists/listinfo/mime-util-developer</subscribe> <unsubscribe>http://lists.sourceforge.net/lists/listinfo/mime-util-developer</unsubscribe> <archive>http://lists.sourceforge.net/lists/listinfo/mime-util-developer</archive> <post>mime-util-developer@lists.sourceforge.net</post> </mailingList> </mailingLists> <issueManagement> <system>sourceforge</system> <url>http://sourceforge.net/tracker/?group_id=205064</url> </issueManagement> <scm> <connection>scm:svn:https://mime-util.svn.sourceforge.net/svnroot/mime-util/trunk/MimeUtil</connection> <developerConnection>scm:svn:https://mime-util.svn.sourceforge.net/svnroot/mime-util/trunk/MimeUtil</developerConnection> <url>http://mime-util.svn.sourceforge.net/viewvc/mime-util/</url> </scm> <distributionManagement> <repository> <id>sourceforge</id> <name>mime-util SourceForge Maven Repository</name> <url>scp://smcardle@shell.sourceforge.net/home/groups/m/mi/mime-util/htdocs/maven2/repo</url> </repository> <snapshotRepository> <id>sourceforge</id> <name>mime-util SourceForge Maven SNAPSHOT Repository</name> <url>scp://smcardle@shell.sourceforge.net/home/groups/m/mi/mime-util/htdocs/maven2/repo-snapshot</url> </snapshotRepository> <site> <id>sourceforge</id> <url>scp://smcardle@shell.sourceforge.net/home/groups/m/mi/mime-util/htdocs</url> <!-- To create and login to a shell use : ssh -t USER,PROJECT@shell.sourceforge.net create --> </site> </distributionManagement> </project>