sinonjs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.webjars</groupId>
<artifactId>sinonjs</artifactId>
<version>1.17.2</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>sinonjs</artifactId>
<version>1.17.2</version>
<name>SinonJS</name>
<description>A javascript library for unit testing</description>
<url>http://webjars.org</url>
<licenses>
<license>
<name>BSD License</name>
<url>https://github.com/cjohansen/Sinon.JS/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://github.com/webjars/sinonjs</url>
<connection>scm:git:https://github.com/webjars/sinonjs.git</connection>
<developerConnection>scm:git:https://github.com/webjars/sinonjs.git</developerConnection>
<tag>sinonjs-1.17.2</tag>
</scm>
<developers>
<developer>
<id>kaizer</id>
<name>Kaizer Poonawala</name>
<email>kaizersh@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sinon.version>1.17.2</sinon.version>
<sinon.url>http://sinonjs.org/releases</sinon.url>
<destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${sinon.version}</destDir>
</properties>
<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>${sinon.url}</url>
<fromFile>sinon-${sinon.version}.js</fromFile>
<toFile>${destDir}/sinon.js</toFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>