jquery
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fujion.webjars</groupId> <artifactId>jquery</artifactId> <version>3.3.1</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>JQuery</name> <artifactId>jquery</artifactId> <version>3.3.1</version> <description>JQuery</description> <properties> <systemjs> { "paths": { "jquery": "jquery" }, "shim": { "jquery": { "exports": "$" } } } </systemjs> </properties> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <executions> <execution> <id>build</id> <configuration> <unpack>false</unpack> <url>http://code.jquery.com/jquery-${project.version}.js</url> <outputFileName>jquery.js</outputFileName> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-webjar-resources</id> <configuration> <resources> <resource> <directory>${project.build.directory}/unpack</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.samaxes.maven</groupId> <artifactId>minify-maven-plugin</artifactId> </plugin> </plugins> </build> </project>