Maven Repository - POM file for Network livereload-jvm 0.2.0 0.2.0

Summary

${project.artifactId}.

A micro http-server compatible with LiveReload 2 (protocol). Should be used in build-time..

Declaration

Here is the list of declaration for livereload-jvm. If you use Maven you can use the following code to add the dependency for this POM file.

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

If you think this Maven repository POM file listing for livereload-jvm is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Public domain (Unlicense)
URL: http://unlicense.org/.





Depends on

The livereload-jvm-0.2.0 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Jettyjetty-server 8.1.8.v20121106
The core jetty server artifact.
62
JSONjson-simple 1.1.1
A simple Java toolkit for JSON
25
JUnitjunit 4.11
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
2031

Plugin

The following plugins are used in the livereload-jvm-0.2.0.jar

  1. maven-jar-plugin
  2. maven-shade-plugin

Packages

The following packages are defined in the livereload-jvm-0.2.0.jar

net_alchim31_livereload

POM File Source

Here is the content of the POM file.

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

  

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