backbone-localstorage
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.webjars</groupId> <artifactId>backbone-localstorage</artifactId> <version>1.1.16</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>backbone-localstorage</artifactId> <version>1.1.16</version> <name>Backbone.localStorage</name> <description>WebJar for Backbone.localStorage</description> <url>http://webjars.org</url> <dependencies> <dependency> <groupId>org.webjars</groupId> <artifactId>backbonejs</artifactId> <version>1.2.1</version> </dependency> </dependencies> <licenses> <license> <name>MIT License</name> <url>https://github.com/jeromegn/Backbone.localStorage/blob/master/README.md</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://github.com/webjars/backbone-localstorage</url> <connection>scm:git:https://github.com/webjars/backbone-localstorage.git</connection> <developerConnection>scm:git:https://github.com/webjars/backbone-localstorage.git</developerConnection> <tag>backbone-localstorage-1.1.16</tag> </scm> <developers> <developer> <id>cthiebaud</id> <name>Christophe Thiebaud</name> <email>christophe.thiebaud@aequologica.net</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <upstreamVersion>1.1.16</upstreamVersion> <downloadUrl>https://raw.github.com/jeromegn/Backbone.localStorage/v${upstreamVersion}</downloadUrl> <destinationDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${upstreamVersion}</destinationDir> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>download-js</id> <phase>process-resources</phase> <goals><goal>download-single</goal></goals> <configuration> <url>${downloadUrl}</url> <fromFile>backbone.localStorage.js</fromFile> <toDir>${destinationDir}</toDir> </configuration> </execution> <execution> <id>download-min-js</id> <phase>process-resources</phase> <goals><goal>download-single</goal></goals> <configuration> <url>${downloadUrl}</url> <fromFile>backbone.localStorage-min.js</fromFile> <toDir>${destinationDir}</toDir> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.6</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>