lodash
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.webjars</groupId> <artifactId>lodash</artifactId> <version>4.17.21</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <packaging>jar</packaging> <groupId>org.webjars</groupId> <artifactId>lodash</artifactId> <version>4.17.21</version> <name>Lo-Dash</name> <description>WebJar for Lo-Dash</description> <url>http://webjars.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <downloadUrl>https://github.com/lodash/lodash/archive/${version.unsnapshot}.zip</downloadUrl> <destinationDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version}</destinationDir> <requirejs> { "paths": { "lodash": "lodash" } } </requirejs> </properties> <licenses> <license> <name>Copyright 2012 John-David Dalton</name> <url>https://github.com/bestiejs/lodash/blob/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://github.com/webjars/lodash</url> <connection>scm:git:https://github.com/webjars/lodash.git</connection> <developerConnection>scm:git:https://github.com/webjars/lodash.git</developerConnection> <tag>lodash-4.17.21</tag> </scm> <developers> <developer> <id>jamesward</id> <name>James Ward</name> <email>james@jamesward.org</email> </developer> <developer> <id>tomekpiotrowski</id> <name>Tomek Piotrowski</name> <email>tomek.piotrowski@atteo.com</email> </developer> </developers> <build> <plugins> <plugin> <groupId>com.jamesward</groupId> <artifactId>unsnapshot-maven-plugin</artifactId> <version>0.2</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>unsnapshot</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>process-resources</phase> <goals><goal>run</goal></goals> <configuration> <target> <echo message="download archive" /> <get src="${downloadUrl}" dest="${project.build.directory}/${project.artifactId}.zip" /> <echo message="unzip archive" /> <unzip src="${project.build.directory}/${project.artifactId}.zip" dest="${project.build.directory}" /> <echo message="moving resources" /> <move todir="${destinationDir}"> <fileset dir="${project.build.directory}/${project.artifactId}-${version.unsnapshot}" includes="*.js" /> </move> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <targetPath>${destinationDir}</targetPath> </resource> </resources> </build> </project>