Download playn-html-1.8.jar file

Introduction

You can download playn-html-1.8.jar in this page.

License

Google Open Source

Type List

playn-html-1.8.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.googlecode.playn/playn-html/pom.properties
META-INF/maven/com.googlecode.playn/playn-html/pom.xml
com.allen_sauer.gwt.voices.client.ui.impl.FlashMovieImplPlayN.class
playn.appcachelinker.AppCacheLinker.class
playn.core.AutoClientBundleWithLookup.class
playn.html.AbstractHtmlCanvas.class
playn.html.EventHandler.class
playn.html.HasArrayBufferView.class
playn.html.HtmlAnalytics.class
playn.html.HtmlAssets.class
playn.html.HtmlAudio.class
playn.html.HtmlBitmapTransformer.class
playn.html.HtmlCanvas.class
playn.html.HtmlCanvasImage.class
playn.html.HtmlFont.class
playn.html.HtmlFontMetrics.class
playn.html.HtmlGL20.class
playn.html.HtmlGLContext.class
playn.html.HtmlGame.class
playn.html.HtmlGradient.class
playn.html.HtmlGraphics.class
playn.html.HtmlGraphicsCanvas.class
playn.html.HtmlGraphicsGL.class
playn.html.HtmlImage.class
playn.html.HtmlInput.class
playn.html.HtmlInternalTransform.class
playn.html.HtmlJson.class
playn.html.HtmlKeyboard.class
playn.html.HtmlLog.class
playn.html.HtmlLogSimple.class
playn.html.HtmlMouse.class
playn.html.HtmlNet.class
playn.html.HtmlPath.class
playn.html.HtmlPattern.class
playn.html.HtmlPlatform.class
playn.html.HtmlPointer.class
playn.html.HtmlRegularExpression.class
playn.html.HtmlSound.class
playn.html.HtmlStorage.class
playn.html.HtmlSurfaceImageCanvas.class
playn.html.HtmlTextLayout.class
playn.html.HtmlTouch.class
playn.html.HtmlUrlParameters.class
playn.html.HtmlWebSocket.class
playn.html.OldHtmlTextLayout.class
playn.html.TimerCallback.class
playn.html.TypedArrayHelper.class
playn.html.XDomainRequest.class
playn.html.websocket.CloseEvent.class
playn.html.websocket.MessageEvent.class
playn.html.websocket.OpenEvent.class
playn.html.websocket.WebSocket.class
playn.logging.enhanced.HtmlLogEnhanced.class
playn.rebind.AutoClientBundleGenerator.class

Pom

playn-html-1.8.pom file content.

<?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>com.googlecode.playn</groupId>
    <artifactId>playn-project</artifactId>
    <version>1.8</version>
  </parent>

  <artifactId>playn-html</artifactId>
  <packaging>jar</packaging>
  <name>PlayN HTML</name>
  <description>The PlayN HTML (GWT) backend</description>

  <dependencies>
    <dependency>
      <groupId>com.googlecode.playn</groupId>
      <artifactId>playn-core</artifactId>
      <version>${project.version}</version>
    </dependency>

    <dependency>
      <groupId>com.googlecode.playn</groupId>
      <artifactId>playn-core</artifactId>
      <version>${project.version}</version>
      <classifier>sources</classifier>
    </dependency>

    <dependency>
      <groupId>com.googlecode.playn</groupId>
      <artifactId>playn-webgl</artifactId>
      <version>${project.version}</version>
    </dependency>

    <dependency>
      <groupId>com.googlecode.playn</groupId>
      <artifactId>playn-webgl</artifactId>
      <version>${project.version}</version>
      <classifier>sources</classifier>
    </dependency>

    <dependency>
      <groupId>com.google.gwt</groupId>
      <artifactId>gwt-user</artifactId>
      <version>${gwt.version}</version>
    </dependency>

    <dependency>
      <groupId>com.google.gwt</groupId>
      <artifactId>gwt-dev</artifactId>
      <version>${gwt.version}</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>com.allen-sauer.gwt.log</groupId>
      <artifactId>gwt-log</artifactId>
      <version>3.1.8</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>com.allen-sauer.gwt.voices</groupId>
      <artifactId>gwt-voices</artifactId>
      <version>3.2.0</version>
    </dependency>
  </dependencies>

  <build>
    <sourceDirectory>src</sourceDirectory>
    <testSourceDirectory>tests</testSourceDirectory>

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>playn/super/**</exclude>
          </excludes>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <configuration>
          <filesets>
            <fileset><directory>war</directory></fileset>
            <fileset><directory>gwt-unitCache/</directory></fileset>
          </filesets>
        </configuration>
      </plugin>

      <!-- this symlinks some shared test code into tests/...; we can't commit
           a symlink in Git (breaks on Windows), so this should be more robust -->
      <plugin>
        <groupId>com.pyx4j</groupId>
        <artifactId>maven-junction-plugin</artifactId>
        <version>1.0.3</version>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>link</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <links>
            <link>
              <src>${basedir}/../core/tests/playn/shared/json</src>
              <dst>${basedir}/tests/playn/shared/json</dst>
            </link>
          </links>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>gwt-maven-plugin</artifactId>
        <configuration>
          <mode>htmlunit</mode>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>test</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>com.googlecode.playn</groupId>
   <artifactId>playn-html</artifactId>
   <version>1.8</version>
</dependency>

Download

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



Download playn-html-1.8.jar file




PreviousNext

Related