webjar-popperjs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fujion.webjars</groupId> <artifactId>webjar-popperjs</artifactId> <version>2.8.3-10</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.fujion.webjars</groupId> <artifactId>fujion-webjars</artifactId> <version>3.0.0</version> </parent> <name>popper.js</name> <artifactId>webjar-popperjs</artifactId> <version>2.8.3-10</version> <description>popper.js Library.</description> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>npm-install</id> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>precompile</id> <configuration> <target> <copy tofile="${src.rootdir}/package.json" file="${basedir}/package-template.json"> <filterchain> <expandproperties /> </filterchain> </copy> </target> </configuration> </execution> <execution> <id>postcompile</id> <configuration> <target> <copy todir="${webjar.target}"> <fileset dir="${src.rootdir}/node_modules/@popperjs/core" includes="README.md,LICENSE.md,dist/" /> </copy> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>