All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.edmunds.tools.databricks.maven.PrepareJobResources Maven / Gradle / Ivy

There is a newer version: 1.13.1
Show newest version
/*
 *    Copyright 2018 Edmunds.com, Inc.
 *
 *        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.edmunds.tools.databricks.maven;

import com.edmunds.tools.databricks.maven.util.ObjectMapperUtils;
import java.io.File;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import org.apache.commons.io.FileUtils;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;

/**
 * Serialize project and system properties as an EnvironmentDTO to a environment.json file.
 */
@Mojo(name = "prepare-job-resources", requiresProject = true, defaultPhase = LifecyclePhase.PREPARE_PACKAGE)
public class PrepareJobResources extends BaseDatabricksJobMojo {

    private static final String ENVIRONMENT_FILE_NAME = "environment.json";

    /**
     * The destination of where to serialize the environment DTO.
     */
    @Parameter(property = "environmentDTOFileOutput",
        defaultValue = "${project.build.directory}/databricks-plugin/" + ENVIRONMENT_FILE_NAME)
    protected File environmentDTOFileOutput;

    @Override
    public void execute() throws MojoExecutionException {
        prepareEnvironmentDTO();
    }

    void prepareEnvironmentDTO() throws MojoExecutionException {
        try {
            FileUtils.writeStringToFile(environmentDTOFileOutput,
                ObjectMapperUtils.serialize(getEnvironmentDTOSupplier().get()), StandardCharsets.UTF_8);
        } catch (IOException e) {
            throw new MojoExecutionException(e.getMessage(), e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy