Download jooby-assets-j2v8-1.1.1.jar file

Introduction

You can download jooby-assets-j2v8-1.1.1.jar in this page.

License

Open Source

Type List

jooby-assets-j2v8-1.1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jooby/jooby-assets-j2v8/pom.properties
META-INF/maven/org.jooby/jooby-assets-j2v8/pom.xml
org.jooby.assets.V8Context.class

Pom

jooby-assets-j2v8-1.1.1.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">

  <parent>
    <groupId>org.jooby</groupId>
    <artifactId>jooby-project</artifactId>
    <version>1.1.1</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <artifactId>jooby-assets-j2v8</artifactId>

  <name>j2v8 module</name>

  <build>
    <plugins>
      <!-- sure-fire -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
            <include>**/*Feature.java</include>
            <include>**/Issue*.java</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>windows_x86</id>
      <activation>
        <os>
          <family>windows</family>
          <arch>x86</arch>
        </os>
      </activation>
      <dependencies>
        <dependency>
          <groupId>com.eclipsesource.j2v8</groupId>
          <artifactId>j2v8_win32_x86</artifactId>
          <version>${j2v8.version}</version>
        </dependency>
      </dependencies>
    </profile>
    <profile>
      <id>windows_x86_64</id>
      <activation>
        <os>
          <family>windows</family>
          <arch>x86_64</arch>
        </os>
      </activation>
      <dependencies>
        <dependency>
          <groupId>com.eclipsesource.j2v8</groupId>
          <artifactId>j2v8_win32_x86_64</artifactId>
          <version>${j2v8.version}</version>
        </dependency>
      </dependencies>
    </profile>
    <profile>
      <id>windows_amd64</id>
      <activation>
        <os>
          <family>windows</family>
          <arch>amd64</arch>
        </os>
      </activation>
      <dependencies>
        <dependency>
          <groupId>com.eclipsesource.j2v8</groupId>
          <artifactId>j2v8_win32_x86_64</artifactId>
          <version>${j2v8.version}</version>
        </dependency>
      </dependencies>
    </profile>
    <profile>
      <id>linux</id>
      <activation>
        <os>
          <family>linux</family>
        </os>
      </activation>
      <dependencies>
        <dependency>
          <groupId>com.eclipsesource.j2v8</groupId>
          <artifactId>j2v8_linux_x86_64</artifactId>
          <version>${j2v8.version}</version>
        </dependency>
      </dependencies>
    </profile>
    <profile>
      <id>mac_x86_64</id>
      <activation>
        <os>
          <family>mac</family>
        </os>
      </activation>
      <dependencies>
        <dependency>
          <groupId>com.eclipsesource.j2v8</groupId>
          <artifactId>j2v8_macosx_x86_64</artifactId>
          <version>${j2v8.version}</version>
        </dependency>
      </dependencies>
    </profile>
  </profiles>

  <dependencies>
    <!-- Jooby -->
    <dependency>
      <groupId>org.jooby</groupId>
      <artifactId>jooby-assets</artifactId>
      <version>${project.version}</version>
    </dependency>

    <!-- Test dependencies -->
    <dependency>
      <groupId>org.jooby</groupId>
      <artifactId>jooby</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
      <classifier>tests</classifier>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymock</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-api-easymock</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-module-junit4</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.jacoco</groupId>
      <artifactId>org.jacoco.agent</artifactId>
      <classifier>runtime</classifier>
      <scope>test</scope>
    </dependency>

  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>org.jooby</groupId>
   <artifactId>jooby-assets-j2v8</artifactId>
   <version>1.1.1</version>
</dependency>

Download

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



Download jooby-assets-j2v8-1.1.1.jar file




PreviousNext

Related