Download jruby-9.0.4.0.jar file

Introduction

You can download jruby-9.0.4.0.jar in this page.

License

MIT License

Type List

jruby-9.0.4.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jruby/jruby/pom.properties
META-INF/maven/org.jruby/jruby/pom.xml

Pom

jruby-9.0.4.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jruby</groupId>
    <artifactId>jruby-artifacts</artifactId>
    <version>9.0.4.0</version>
  </parent>
  <artifactId>jruby</artifactId>
  <name>JRuby Main Maven Artifact</name>
  <dependencies>
    <dependency>
      <groupId>org.jruby</groupId>
      <artifactId>jruby-core</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.jruby</groupId>
      <artifactId>jruby-stdlib</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <skipSource>true</skipSource>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-invoker-plugin</artifactId>
        <configuration>
          <properties>
            <localRepository>${settings.localRepository}</localRepository>
          </properties>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <executions>
          <execution>
            <id>clean-extra-osgi-ITs</id>
            <phase>clean</phase>
            <goals>
              <goal>clean</goal>
            </goals>
            <configuration>
              <filesets>
                <fileset>
                  <directory>${basedir}/src/it</directory>
                  <includes>
                    <include>osgi*/**</include>
                  </includes>
                </fileset>
              </filesets>
              <failOnError>false</failOnError>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>apps</id>
      <activation>
        <property>
          <name>invoker.test</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>io.takari.polyglot</groupId>
            <artifactId>polyglot-maven-plugin</artifactId>
            <version>0.1.11</version>
            <executions>
              <execution>
                <id>setup web applications</id>
                <phase>pre-integration-test</phase>
                <goals>
                  <goal>execute</goal>
                </goals>
                <configuration>
                  <taskId>setup web applications</taskId>
                  <nativePom>pom.rb</nativePom>
                </configuration>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>io.takari.polyglot</groupId>
                <artifactId>polyglot-ruby</artifactId>
                <version>0.1.11</version>
              </dependency>
            </dependencies>
          </plugin>
        </plugins>
      </build>
      <properties>
        <invoker.skip>false</invoker.skip>
        <invoker.test>hellowarld_*</invoker.test>
      </properties>
    </profile>
    <profile>
      <id>osgi</id>
      <activation>
        <property>
          <name>invoker.test</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>io.takari.polyglot</groupId>
            <artifactId>polyglot-maven-plugin</artifactId>
            <version>0.1.11</version>
            <executions>
              <execution>
                <id>setup osgi integration tests</id>
                <phase>pre-integration-test</phase>
                <goals>
                  <goal>execute</goal>
                </goals>
                <configuration>
                  <taskId>setup osgi integration tests</taskId>
                  <nativePom>pom.rb</nativePom>
                </configuration>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>io.takari.polyglot</groupId>
                <artifactId>polyglot-ruby</artifactId>
                <version>0.1.11</version>
              </dependency>
            </dependencies>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>jdk8</id>
      <activation>
        <jdk>1.8</jdk>
      </activation>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <configuration>
              <pomExcludes>
                <pomExclude>extended/pom.xml</pomExclude>
                <pomExclude>osgi_all_inclusive_felix-3.2/pom.xml</pomExclude>
                <pomExclude>${its.j2ee}</pomExclude>
                <pomExclude>${its.osgi}</pomExclude>
              </pomExcludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>wlp</id>
      <activation>
        <property>
          <name>wlp.jar</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>io.takari.polyglot</groupId>
            <artifactId>polyglot-maven-plugin</artifactId>
            <version>0.1.11</version>
            <executions>
              <execution>
                <id>install_wlp</id>
                <phase>pre-integration-test</phase>
                <goals>
                  <goal>execute</goal>
                </goals>
                <configuration>
                  <taskId>install_wlp</taskId>
                  <nativePom>pom.rb</nativePom>
                </configuration>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>io.takari.polyglot</groupId>
                <artifactId>polyglot-ruby</artifactId>
                <version>0.1.11</version>
              </dependency>
            </dependencies>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.jruby</groupId>
   <artifactId>jruby</artifactId>
   <version>9.0.4.0</version>
</dependency>

Download

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



Download jruby-9.0.4.0.jar file




PreviousNext

Related