diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-08 23:18:56 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-08 23:18:56 +0100 |
commit | 74c2339fffcbbbc866c9c8f9a75a1aa8bb0a91dd (patch) | |
tree | bae44f14c4e8137259d4a9e28f6696149c3d5294 /gnu/packages/java.scm | |
parent | 8057c9e906fefb8df9ef94a83a644c9d7b1b0cd0 (diff) | |
download | patches-74c2339fffcbbbc866c9c8f9a75a1aa8bb0a91dd.tar patches-74c2339fffcbbbc866c9c8f9a75a1aa8bb0a91dd.tar.gz |
gnu: Add java-eclipse-jdt-compiler-apt.
* gnu/packages/java.scm (java-eclipse-jdt-compiler-apt): New variable.
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r-- | gnu/packages/java.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 89f2a8f5e2..47dc89d373 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -5984,6 +5984,33 @@ and contributes the Eclipse default text editor.") development tools.") (license license:epl1.0))) +(define-public java-eclipse-jdt-compiler-apt + (package + (name "java-eclipse-jdt-compiler-apt") + (version "1.3.400") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/" + "org/eclipse/jdt/org.eclipse.jdt.compiler.apt/" + version "/org.eclipse.jdt.compiler.apt-" + version "-sources.jar")) + (sha256 + (base32 + "1s285k9p2ixdqrknb40jbbvw682n9a7l5lqpn583a8pvlzg2l6r8")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f ; no tests included + #:jar-name "eclipse-jdt-compiler-apt.jar" + #:jdk ,openjdk11)) + (inputs + `(("java-eclipse-jdt-core" ,java-eclipse-jdt-core))) + (home-page "https://www.eclipse.org/jdt/apt/") + (synopsis "Annotation processing tool") + (description "APT stands for Annotation Processing Tool. APT provides a +means for generating files and compiling new Java classes based on annotations +found in your source code.") + (license license:epl2.0))) + (define-public java-javax-mail (package (name "java-javax-mail") |