Download dragome-js-commons-0.96.jar file

Introduction

You can download dragome-js-commons-0.96.jar in this page.

License

GNU General Public License, Version 3

Type List

dragome-js-commons-0.96.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.dragome/dragome-js-commons/pom.properties
META-INF/maven/com.dragome/dragome-js-commons/pom.xml
com.dragome.commons.AbstractProxyRelatedInvocationHandler.class
com.dragome.commons.ChainedInstrumentationDragomeConfigurator.class
com.dragome.commons.ContinueReflection.class
com.dragome.commons.DefaultDragomeConfigurator.class
com.dragome.commons.DelegateCode.class
com.dragome.commons.DragomeConfigurator.class
com.dragome.commons.DragomeConfiguratorImplementor.class
com.dragome.commons.DragomeInstrumentationClassLoader.class
com.dragome.commons.ExecutionHandler.class
com.dragome.commons.InstrumentationDragomeConfigurator.class
com.dragome.commons.ProxyRelatedInvocationHandler.class
com.dragome.commons.compiler.BytecodeToJavascriptCompiler.class
com.dragome.commons.compiler.BytecodeToJavascriptCompilerConfiguration.class
com.dragome.commons.compiler.BytecodeTransformer.class
com.dragome.commons.compiler.CompilerMode.class
com.dragome.commons.compiler.CopyUtils.class
com.dragome.commons.compiler.PrioritySolver.class
com.dragome.commons.compiler.annotations.AnnotationsHelper.class
com.dragome.commons.compiler.annotations.CompilerType.class
com.dragome.commons.compiler.annotations.DragomeCompilerSettings.class
com.dragome.commons.compiler.annotations.MethodAlias.class
com.dragome.commons.compiler.classpath.AbstractClasspathFile.class
com.dragome.commons.compiler.classpath.Classpath.class
com.dragome.commons.compiler.classpath.ClasspathEntry.class
com.dragome.commons.compiler.classpath.ClasspathFile.class
com.dragome.commons.compiler.classpath.ClasspathFileFilter.class
com.dragome.commons.compiler.classpath.FolderClasspathEntry.class
com.dragome.commons.compiler.classpath.InMemoryClasspathFile.class
com.dragome.commons.compiler.classpath.InsideJarClasspathFile.class
com.dragome.commons.compiler.classpath.J7Helper.class
com.dragome.commons.compiler.classpath.JarClasspathEntry.class
com.dragome.commons.compiler.classpath.JavaFileClasspathFile.class
com.dragome.commons.compiler.classpath.VirtualFolderClasspathEntry.class
com.dragome.commons.javascript.ConsoleOutputStream.class
com.dragome.commons.javascript.JSObject.class
com.dragome.commons.javascript.ScriptHelper.class
com.dragome.commons.javascript.ScriptHelperInterface.class
dragome/javascript/runtime.js

Pom

dragome-js-commons-0.96.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>

  <groupId>com.dragome</groupId>
  <artifactId>dragome-js-commons</artifactId>
  <name>dragome-js-commons</name>
  <packaging>jar</packaging>
  <version>${dragome.version}</version>

  <description>Dragome SDK module: commons</description>
  <url>http://www.dragome.com</url>

  <properties>
    <dragome.version>0.96-beta4</dragome.version>
    <skip.gpg>true</skip.gpg>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

  <licenses>
    <license>
      <name>GNU General Public License, Version 3</name>
      <url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Fernando Petrola</name>
      <email>fernando.petrola@dragome.com</email>
      <organization>Dragome</organization>
      <organizationUrl>http://www.dragome.com</organizationUrl>
    </developer>
  </developers>

  <scm>
    <connection>scm:git:git@github.com:dragome/dragome-sdk.git</connection>
    <developerConnection>scm:git:git@github.com:dragome/dragome-sdk.git</developerConnection>
    <url>git@github.com:dragome/dragome-sdk.git</url>
  </scm>

  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>

  <dependencies>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <configuration>
          <skip>${skip.gpg}</skip>
        </configuration>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

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

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <charset>UTF-8</charset>
          <docencoding>UTF-8</docencoding>
          <docfilessubdirs>true</docfilessubdirs>
          <links>
            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
          </links>
          <show>protected</show>
          <source>1.5</source>
          <sourcepath>${basedir}/src/main/java/com/dragome/commons/compiler/annotations</sourcepath>
        </configuration>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>com.dragome</groupId>
   <artifactId>dragome-js-commons</artifactId>
   <version>0.96</version>
</dependency>

Download

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



Download dragome-js-commons-0.96.jar file




PreviousNext

Related