Download livereload-jvm-0.2.0.jar file

Introduction

You can download livereload-jvm-0.2.0.jar in this page.

License

Public domain (Unlicense)

Type List

livereload-jvm-0.2.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.alchim31/livereload-jvm/pom.properties
META-INF/maven/net.alchim31/livereload-jvm/pom.xml
livereload.js
net_alchim31_livereload.LRProtocol.class
net_alchim31_livereload.LRServer.class
net_alchim31_livereload.LRWebSocketHandler.class
net_alchim31_livereload.Main.class
net_alchim31_livereload.Watcher.class

Pom

livereload-jvm-0.2.0.pom file content.

<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>

	<groupId>net.alchim31</groupId>
	<artifactId>livereload-jvm</artifactId>
	<version>0.2.0</version>
	<name>${project.artifactId}</name>

	<url>http://github.com/davidB/${project.artifactId}</url>
	<inceptionYear>2013</inceptionYear>
	<description>A micro http-server compatible with LiveReload 2 (protocol). Should be used in build-time.</description>

	<licenses>
		<license>
			<name>Public domain (Unlicense)</name>
			<url>http://unlicense.org/</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:git://github.com/davidB/${project.artifactId}.git</connection>
		<developerConnection>scm:git:git@github.com:davidB/${project.artifactId}.git</developerConnection>
		<url>http://github.com/davidB/${project.artifactId}/</url>
	</scm>

	<issueManagement>
		<system>github</system>
		<url>http://github.com/davidB/${project.artifactId}/issues#issue/</url>
	</issueManagement>

	<developers>
		<developer>
			<id>david.bernard</id>
			<name>David Bernard</name>
			<timezone>+1</timezone>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
	</developers>

	<contributors>
		<contributor>
			<name>Stan Lewis</name>
			<roles>
				<role>Contributor</role>
			</roles>
		</contributor>
	</contributors>

	<properties>
		<maven.compiler.source>1.7</maven.compiler.source>
		<maven.compiler.target>1.7</maven.compiler.target>
		<encoding>UTF-8</encoding>
		<mavenVersion>3.0.3</mavenVersion>
	</properties>

	<prerequisites>
		<maven>3.0</maven>
	</prerequisites>

	<dependencies>
		<dependency>
			<groupId>org.eclipse.jetty</groupId>
			<artifactId>jetty-server</artifactId>
			<version>8.1.8.v20121106</version>
		</dependency>
		<dependency>
			<groupId>org.eclipse.jetty</groupId>
			<artifactId>jetty-websocket</artifactId>
			<version>8.1.8.v20121106</version>
		</dependency>
		<dependency>
			<groupId>com.googlecode.json-simple</groupId>
			<artifactId>json-simple</artifactId>
			<version>1.1.1</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<archive>
						<manifest>
							<mainClass>net_alchim31_livereload.Main</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<!-- TODO try proguard -->
			<plugin>
				<artifactId>maven-shade-plugin</artifactId>
				<version>2.2</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>shade</goal>
						</goals>
						<configuration>
							<shadedArtifactAttached>true</shadedArtifactAttached>
							<shadedClassifierName>onejar</shadedClassifierName>
							<filters>
								<filter>
									<artifact>*:*</artifact>
									<excludes>
										<exclude>META-INF/*.SF</exclude>
										<exclude>META-INF/*.DSA</exclude>
										<exclude>META-INF/*.RSA</exclude>
									</excludes>
								</filter>
							</filters>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>net.alchim31</groupId>
   <artifactId>livereload-jvm</artifactId>
   <version>0.2.0</version>
</dependency>

Download

If you think the following livereload-jvm-0.2.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download livereload-jvm-0.2.0.jar file




PreviousNext

Related