Skip to content

mvnpm/esbuild-maven-plugin

Repository files navigation

esbuild-maven-plugin

Build Status usefulness 100% Maven Central Apache License, Version 2.0, January 2004

Usage

<plugin>
    <groupId>io.mvnpm</groupId>
    <artifactId>esbuild-maven-plugin</artifactId>
    <version>999-SNAPSHOT</version>
    <executions>
        <execution>
            <id>esbuild</id>
            <goals>
                <goal>esbuild</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <entryPoint>backoffice.js</entryPoint>
    </configuration>
    <dependencies>
        <!-- add web dependencies here -->
        <dependency>
            <groupId>org.mvnpm</groupId>
            <artifactId>bootstrap</artifactId>
            <version>5.3.3</version>
        </dependency>
        <dependency>
            <groupId>org.mvnpm.at.popperjs</groupId>
            <artifactId>core</artifactId>
            <version>2.11.8</version>
        </dependency>
        <dependency>
            <groupId>org.mvnpm</groupId>
            <artifactId>bootstrap-icons</artifactId>
            <version>1.11.3</version>
        </dependency>
    </dependencies>
</plugin>