From cfc16f7532a19bd7317a7b3a6b48cc0abe523a87 Mon Sep 17 00:00:00 2001 From: Zac Blanco Date: Wed, 9 Apr 2025 08:30:18 -0700 Subject: [PATCH] Add dummy class to deploy presto-native-tests module --- .../facebook/presto/nativetests/Dummy.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 presto-native-tests/src/main/java/com/facebook/presto/nativetests/Dummy.java diff --git a/presto-native-tests/src/main/java/com/facebook/presto/nativetests/Dummy.java b/presto-native-tests/src/main/java/com/facebook/presto/nativetests/Dummy.java new file mode 100644 index 0000000000000..eb1229c661e10 --- /dev/null +++ b/presto-native-tests/src/main/java/com/facebook/presto/nativetests/Dummy.java @@ -0,0 +1,22 @@ +/* + * 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. + */ +package com.facebook.presto.nativetests; + +/** + * This class exists to force the creation of a jar for the presto-native-tests module. + * This is needed to deploy the presto-native-tests module to nexus. + */ +public class Dummy +{ +}