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

io.quarkiverse.web.bundler.deployment.items.WebBundlerTargetDirBuildItem Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package io.quarkiverse.web.bundler.deployment.items;

import java.nio.file.Path;

import io.quarkus.builder.item.SimpleBuildItem;

public final class WebBundlerTargetDirBuildItem extends SimpleBuildItem {

    private final Path targetDir;
    private final Path distDir;

    public WebBundlerTargetDirBuildItem(Path targetDir, Path distDir) {
        this.targetDir = targetDir;
        this.distDir = distDir;
    }

    public Path webBundler() {
        return targetDir;
    }

    public Path dist() {
        return distDir;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy