lodash
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fujion.webjars</groupId> <artifactId>lodash</artifactId> <version>4.17.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-parent</artifactId> <version>2.1.0-SNAPSHOT</version> </parent> <name>Lodash Library</name> <artifactId>lodash</artifactId> <version>4.17.10</version> <description>Lodash modular utilities.</description> <properties> <systemjs> { "paths": { "lodash": "dist/lodash" } } </systemjs> </properties> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <executions> <execution> <id>build</id> <configuration> <url>https://github.com/lodash/lodash/archive/${project.version}.zip</url> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-webjar-resources</id> <configuration> <resources> <resource> <includes> <include>dist/*.*</include> <include>LICENSE</include> <include>README.md</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>