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

io.github.devsecops.engine.domain.artifact.instructions.MavenCleanInstruction Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package io.github.devsecops.engine.domain.artifact.instructions;

import io.github.devsecops.engine.core.contract.Instruction;
import lombok.AllArgsConstructor;
import lombok.Builder;

@Builder
@AllArgsConstructor
public class MavenCleanInstruction implements Instruction {
    private static final String CMD = "mvn -U -s %s clean package -DskipTests";
    private final String settings;

    @Override
    public String getCmd() {
        return String.format(CMD, settings);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy