qrcodejs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.webjars</groupId>
<artifactId>qrcodejs</artifactId>
<version>2015.11.25-04f46c6</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/xsd/maven-4.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>qrcodejs</artifactId>
<version>2015.11.25-04f46c6</version>
<name>QRCode.js</name>
<description>WebJar for QRCode.js</description>
<url>http://webjars.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<upstreamVersion>04f46c6a0708418cb7b96fc563eacae0fbf77674</upstreamVersion>
<upstreamShortVersion>04f46c6</upstreamShortVersion>
<upstreamUrl>https://raw.githubusercontent.com/davidshimjs/qrcodejs/${upstreamVersion}</upstreamUrl>
<destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${upstreamShortVersion}</destDir>
</properties>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/davidshimjs/qrcodejs/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://github.com/webjars/qrcodejs</url>
<connection>scm:git:https://github.com/webjars/qrcodejs.git</connection>
<developerConnection>scm:git:https://github.com/webjars/qrcodejs.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>arenard</id>
<name>Arnaud RENARD</name>
<email>arenard@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>1.9.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version>
<executions>
<execution>
<id>download-min-js</id>
<phase>process-resources</phase>
<goals>
<goal>download-single</goal>
</goals>
<configuration>
<url>${upstreamUrl}</url>
<fromFile>qrcode.min.js</fromFile>
<toDir>${destDir}</toDir>
</configuration>
</execution>
<execution>
<id>download-js</id>
<phase>process-resources</phase>
<goals>
<goal>download-single</goal>
</goals>
<configuration>
<url>${upstreamUrl}</url>
<fromFile>qrcode.js</fromFile>
<toDir>${destDir}</toDir>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</project>