Files
gerrit/lib/mime4j/BUCK
Patrick Hiesel 8f0fabf9dc Implement RawMailParser
This change adds a parser to parse raw emails received by either POP3 or
IMAP into a MailMessage. It adds a dependency to Apache Mime4j to handle
the mime message parsing and tests.

Change-Id: I97ead9615ffcd0a7839ae1aa1581be4005cf67f1
2016-11-07 11:18:50 +01:00

36 lines
664 B
Python

include_defs('//lib/maven.defs')
VERSION = '0.8.0'
java_library(
name = 'core',
exported_deps = [
':core_library',
],
visibility = ['PUBLIC'],
)
maven_jar(
name = 'core_library',
id = 'org.apache.james:apache-mime4j-core:' + VERSION,
sha1 = 'd54f45fca44a2f210569656b4ca3574b42911c95',
license = 'Apache2.0',
visibility = ['PUBLIC'],
)
java_library(
name = 'dom',
exported_deps = [
':dom_library',
],
visibility = ['PUBLIC'],
)
maven_jar(
name = 'dom_library',
id = 'org.apache.james:apache-mime4j-dom:' + VERSION,
sha1 = '6720c93d14225c3e12c4a69768a0370c80e376a3',
license = 'Apache2.0',
visibility = ['PUBLIC'],
)