You can download jquery-ui-1.11.4.jar in this page.
MIT License
jquery-ui-1.11.4.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.webjars/jquery-ui/pom.properties META-INF/maven/org.webjars/jquery-ui/pom.xml META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_diagonals-thick_18_b81900_40x40.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_diagonals-thick_20_666666_40x40.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_flat_10_000000_40x100.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_glass_100_f6f6f6_1x400.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_glass_100_fdf5ce_1x400.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_glass_65_ffffff_1x400.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_gloss-wave_35_f6a828_500x100.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_highlight-soft_100_eeeeee_1x100.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-bg_highlight-soft_75_ffe45c_1x100.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-icons_222222_256x240.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-icons_228ef1_256x240.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-icons_ef8c08_256x240.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-icons_ffd27a_256x240.png META-INF/resources/webjars/jquery-ui/1.11.4/images/ui-icons_ffffff_256x240.png META-INF/resources/webjars/jquery-ui/1.11.4/index.html META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.css META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.js META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.min.css META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.min.js META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.structure.css META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.structure.min.css META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.theme.css META-INF/resources/webjars/jquery-ui/1.11.4/jquery-ui.theme.min.css META-INF/resources/webjars/jquery-ui/1.11.4/webjars-requirejs.js
jquery-ui-1.11.4.pom file content.
<?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>jquery-ui</artifactId> <version>1.11.4</version> <name>jQuery UI</name> <description>WebJar for jQuery UI</description> <url>http://webjars.org</url> <licenses> <license> <name>MIT License</name> <url>https://github.com/jquery/jquery-ui/blob/master/MIT-LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://github.com/webjars/jquery-ui</url> <connection>scm:git:https://github.com/webjars/jquery-ui.git</connection> <developerConnection>scm:git:https://github.com/webjars/jquery-ui.git</developerConnection> <tag>jquery-ui-1.11.4</tag> </scm> <developers> <developer> <id>jamesward</id> <name>James Ward</name> <email>james@jamesward.org</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jqueryui.version>1.11.4</jqueryui.version> <jqueryui.sourceUrl>http://jqueryui.com/resources/download/</jqueryui.sourceUrl> <destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${jqueryui.version}</destDir> <requirejs> { "paths": { "jquery-ui": "jquery-ui", "jquery-ui-min": "jquery-ui.min" }, "shim": { "jquery-ui": [ "jquery" ], "jquery-ui-min": [ "jquery" ] } } </requirejs> </properties> <dependencies> <dependency> <groupId>org.webjars</groupId> <artifactId>jquery</artifactId> <version>1.11.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> <version>1.0-beta-4</version> <executions> <execution> <phase>process-resources</phase> <goals><goal>download-single</goal></goals> <configuration> <url>${jqueryui.sourceUrl}</url> <fromFile>jquery-ui-${jqueryui.version}.zip</fromFile> <toFile>${project.build.directory}/jquery-ui.zip</toFile> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>process-resources</phase> <goals><goal>run</goal></goals> <configuration> <target> <echo message="unzip archive" /> <unzip src="${project.build.directory}/jquery-ui.zip" dest="${project.build.directory}" /> <echo message="moving resources" /> <move todir="${destDir}"> <fileset dir="${project.build.directory}/jquery-ui-${jqueryui.version}" excludes="external/" /> </move> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</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>${destDir}</targetPath> </resource> </resources> </build> </project>
<dependency> <groupId>org.webjars</groupId> <artifactId>jquery-ui</artifactId> <version>1.11.4</version> </dependency>
If you think the following jquery-ui-1.11.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jquery-ui-1.11.4.jar file