From 207b3100f7a0b187145087e3de532632ed645690 Mon Sep 17 00:00:00 2001 From: Martin Traverso Date: Fri, 27 Sep 2024 13:54:15 -0700 Subject: [PATCH] Add module declaration --- src/main/java/module-info.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/main/java/module-info.java diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java new file mode 100644 index 0000000..e44725e --- /dev/null +++ b/src/main/java/module-info.java @@ -0,0 +1,19 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +module org.airlift.units { + requires com.fasterxml.jackson.annotation; + requires jakarta.validation; + + exports io.airlift.units; +}