aboutsummaryrefslogtreecommitdiff
path: root/src/core9
diff options
context:
space:
mode:
authorcnuessgens <christian@nuessgens.com>2018-03-22 17:48:58 +0100
committercnuessgens <christian@nuessgens.com>2018-03-22 17:48:58 +0100
commit06da0854e93df222603fcc2e51c9594c16899087 (patch)
tree66fb28a407cf3322801f241cc419767a25417e03 /src/core9
parent1b6de01bf187def687cb0e757da4295b0790f0ac (diff)
parent5a5d75a931e66b03212081e35bdfdc7b6be98783 (diff)
downloadlombok-06da0854e93df222603fcc2e51c9594c16899087.tar.gz
lombok-06da0854e93df222603fcc2e51c9594c16899087.tar.bz2
lombok-06da0854e93df222603fcc2e51c9594c16899087.zip
Merge remote-tracking branch 'remotes/upstream/master'
Diffstat (limited to 'src/core9')
-rw-r--r--src/core9/module-info.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/core9/module-info.java b/src/core9/module-info.java
new file mode 100644
index 00000000..87f819e2
--- /dev/null
+++ b/src/core9/module-info.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2018 The Project Lombok Authors.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+module lombok {
+ requires java.compiler;
+ requires java.instrument;
+ requires jdk.unsupported;
+
+ exports lombok;
+ exports lombok.experimental;
+ exports lombok.extern.apachecommons;
+ exports lombok.extern.java;
+ exports lombok.extern.jbosslog;
+ exports lombok.extern.log4j;
+ exports lombok.extern.slf4j;
+
+ provides javax.annotation.processing.Processor with lombok.launch.AnnotationProcessorHider.AnnotationProcessor;
+ provides org.mapstruct.ap.spi.AstModifyingAnnotationProcessor with lombok.launch.AnnotationProcessorHider.AstModificationNotifier;
+}
+