webjar-rxjs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fujion.webjars</groupId> <artifactId>webjar-rxjs</artifactId> <version>7.5.5</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>RxJS</name> <artifactId>webjar-rxjs</artifactId> <version>7.5.5</version> <description>RxJS Library.</description> <properties> <skip.minification.js>true</skip.minification.js> </properties> <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}/dist"> <fileset dir="${src.rootdir}/node_modules/rxjs/dist/bundles" /> </copy> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>