jruby-noasm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jruby</groupId> <artifactId>jruby-noasm</artifactId> <version>9.0.0.0.pre1</version> </dependency>
<?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.0.0.pre1</version> </parent> <artifactId>jruby-noasm</artifactId> <name>JRuby Main Maven Artifact With ASM Relocated</name> <properties> <jruby.home>${basedir}/../..</jruby.home> <tesla.dump.readonly>true</tesla.dump.readonly> <main.basedir>${project.parent.parent.basedir}</main.basedir> <tesla.dump.pom>pom.xml</tesla.dump.pom> </properties> <dependencies> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-core</artifactId> <version>${project.version}</version> <classifier>noasm</classifier> <exclusions> <exclusion> <artifactId>jnr-ffi</artifactId> <groupId>com.github.jnr</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>asm-commons</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>asm-analysis</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>asm-util</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> </exclusions> </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> </plugin> </plugins> </build> </project>