org.sakaiproject.nakamura.hashfiles
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sakaiproject.nakamura</groupId>
<artifactId>org.sakaiproject.nakamura.hashfiles</artifactId>
<version>1.2.0-RC1</version>
</dependency><?xml version="1.0" encoding="ISO-8859-1"?>
<!--
* Licensed to the Sakai Foundation (SF) under one * or more contributor license agreements. See
the NOTICE file * distributed with this work for additional information * regarding copyright
ownership. The SF licenses this file * to you under the Apache License, Version 2.0 (the *
"License"); you may not use this file except in compliance * with the License. You may obtain a
copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by
applicable law or agreed to in writing, * software distributed under the License is distributed
on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or
implied. See the License for the * specific language governing permissions and limitations under
the License.
-->
<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>
<relativePath />
<version>7</version>
</parent>
<groupId>org.sakaiproject.nakamura</groupId>
<artifactId>org.sakaiproject.nakamura.hashfiles</artifactId>
<packaging>jar</packaging>
<version>1.2.0-RC1</version>
<name>Sakai 3 UX File Hasher</name>
<description>Hashes files and appends the hash to the name to trigger proper caching</description>
<scm>
<connection>scm:git:git://github.com/sakaiproject/3akai-ux.git</connection>
<developerConnection>scm:git:git@github.com:sakaiproject/3akai-ux.git</developerConnection>
<url>http://github.com/sakaiproject/3akai-ux/</url>
</scm>
<pluginRepositories>
<pluginRepository>
<id>default</id>
<name>Maven Repository Switchboard</name>
<layout>default</layout>
<url>http://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>true</showDeprecation>
<compilerArgument>-Xlint:unchecked,deprecation,fallthrough,finally</compilerArgument>
<fork>true</fork>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifest>
<mainClass>org.sakaiproject.ux.tools.HashRefreshFiles</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>