Skip to content

Commit

Permalink
Add dummy class to fix Nexus release issues
Browse files Browse the repository at this point in the history
Open source nexus deployment requires the creation of a JAR with Javadoc.  Because we depend
on the code in the `presto-native-execution` module now in other modules for tests, we need
to release these artifacts to Nexus along with the rest of the modules we release.

Because there is only testing code in this module, it fails during Nexus deployment.  Adding
a dummy class with Javadoc to allow this artifact to be released.
  • Loading branch information
tdcmeehan committed Dec 9, 2024
1 parent 7b58f4c commit c3e18d8
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* 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;

/**
* This class exists to force the creation of a jar for the presto-server module. This is needed to deploy the presto-server module to nexus.
*/
public class Dummy
{
}

0 comments on commit c3e18d8

Please sign in to comment.