Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 2.66 KB

README.md

File metadata and controls

68 lines (51 loc) · 2.66 KB

one.irradia.mime

Build Status Maven Central Maven Central (snapshot) Codacy Badge Codecov Gitter

mime

Features

  • Parse RFC 2045 MIME type strings
  • Full positional/lexical information to pinpoint errors in data
  • ISC license
  • High coverage automated test suite
  • OSGi-ready

Building

Install the Android SDK. The package has no dependencies on the Android API and is therefore usable in non-Android projects.

$ ./gradlew clean assemble check

If the above fails, it's a bug. Report it!

Using

Use the following Maven or Gradle dependencies, replacing ${LATEST_VERSION_HERE} with whatever is the latest version published to Maven Central:

<!-- API -->
<dependency>
  <groupId>one.irradia.mime</groupId>
  <artifactId>one.irradia.mime.api</artifactId>
  <version>${LATEST_VERSION_HERE}</version>
</dependency>

<!-- Default implementation -->
<dependency>
  <groupId>one.irradia.mime</groupId>
  <artifactId>one.irradia.mime.vanilla</artifactId>
  <version>${LATEST_VERSION_HERE}</version>
</dependency>
repositories {
  mavenCentral()
}

implementation "one.irradia.mime:one.irradia.mime.api:${LATEST_VERSION_HERE}"
implementation "one.irradia.mime:one.irradia.mime.vanilla:${LATEST_VERSION_HERE}"

Library code is encouraged to depend only upon the API package in order to give consumers the freedom to use other implementations of the API if desired.

Semantic Versioning

All irradia.one packages obey Semantic Versioning once they reach version 1.0.0.