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

io.quarkiverse.web.bundler.deployment.items.GeneratedBundleBuildItem 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 java.util.Map;

import io.quarkus.builder.item.SimpleBuildItem;

public final class GeneratedBundleBuildItem extends SimpleBuildItem {

    private final Path bundlePath;
    private final Map bundle;

    public GeneratedBundleBuildItem(Path bundlePath, Map bundle) {
        this.bundlePath = bundlePath;
        this.bundle = bundle;
    }

    public Path getBundlePath() {
        return bundlePath;
    }

    public Map getBundle() {
        return bundle;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy