es6-promise
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.webjars</groupId> <artifactId>es6-promise</artifactId> <version>4.2.8</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.webjars</groupId> <artifactId>es6-promise-parent</artifactId> <version>4.2.8</version> <relativePath>../pom.xml</relativePath> </parent> <packaging>jar</packaging> <artifactId>es6-promise</artifactId> <name>ES6-Promises</name> <description>WebJar for ES6-Promises</description> <properties> <requirejs> { "paths": { "es6-promise": "es6-promise" } } </requirejs> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-resources</phase> <id>move</id> <goals> <goal>run</goal> </goals> <configuration> <target> <echo message="moving resources" /> <move file="${extractDir}/dist/es6-promise.js" tofile="${destDir}/es6-promise.js" /> <move file="${extractDir}/dist/es6-promise.min.js" tofile="${destDir}/es6-promise.min.js" /> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.5.1</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>