Download groovy-sandbox-1.8.jar file

Introduction

You can download groovy-sandbox-1.8.jar in this page.

License

Open Source

Type List

groovy-sandbox-1.8.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.kohsuke/groovy-sandbox/pom.properties
META-INF/maven/org.kohsuke/groovy-sandbox/pom.xml
org.kohsuke.groovy.sandbox.GroovyInterceptor.class
org.kohsuke.groovy.sandbox.GroovyValueFilter.class
org.kohsuke.groovy.sandbox.SandboxTransformer.class
org.kohsuke.groovy.sandbox.ScopeTrackingClassCodeExpressionTransformer.class
org.kohsuke.groovy.sandbox.StackVariableSet.class
org.kohsuke.groovy.sandbox.impl.Checker.class
org.kohsuke.groovy.sandbox.impl.InvokerChain.class
org.kohsuke.groovy.sandbox.impl.Ops.class
org.kohsuke.groovy.sandbox.impl.SandboxedMethodClosure.class
org.kohsuke.groovy.sandbox.impl.SingleArgInvokerChain.class
org.kohsuke.groovy.sandbox.impl.TwoArgInvokerChain.class
org.kohsuke.groovy.sandbox.impl.VarArgInvokerChain.class
org.kohsuke.groovy.sandbox.impl.ZeroArgInvokerChain.class

Pom

groovy-sandbox-1.8.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.kohsuke</groupId>
    <artifactId>pom</artifactId>
    <version>6</version>
  </parent>

  <artifactId>groovy-sandbox</artifactId>
  <version>1.8</version>

  <name>Groovy Sandbox</name>
  <description>Executes untrusted Groovy script safely</description>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
        <dependencies>
          <dependency>
            <groupId>org.kohsuke</groupId>
            <artifactId>doxia-module-markdown</artifactId>
            <version>1.0</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin>
        <groupId>org.codehaus.gmaven</groupId>
        <artifactId>gmaven-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <goals>
              <goal>generateStubs</goal>
              <goal>compile</goal>
              <goal>generateTestStubs</goal>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
           <providerSelection>1.8</providerSelection>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.codehaus.gmaven.runtime</groupId>
            <artifactId>gmaven-runtime-1.8</artifactId>
            <version>1.5</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
            <phase>package</phase>
          </execution>
        </executions>
      </plugin>
    </plugins>
    <extensions>
      <extension>
        <groupId>org.kathrynhuxtable.maven.wagon</groupId>
        <artifactId>wagon-gitsite</artifactId>
        <version>0.3.1</version>
      </extension>
    </extensions>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy</artifactId>
      <version>1.8.5</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

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

  <distributionManagement>
    <site>
      <id>github-pages</id>
      <url>gitsite:git@github.com/kohsuke/${project.artifactId}.git</url>
    </site>
  </distributionManagement>

  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
</project>

POM Entry

<dependency>
   <groupId>org.kohsuke</groupId>
   <artifactId>groovy-sandbox</artifactId>
   <version>1.8</version>
</dependency>

Download

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



Download groovy-sandbox-1.8.jar file




PreviousNext

Related