Skip to content

Commit

Permalink
JPMS
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Sep 7, 2018
1 parent b692baf commit 51fff6e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
32 changes: 26 additions & 6 deletions pom.xml
Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>org.jruby.jcodings</groupId>
<artifactId>jcodings</artifactId>
<version>1.0.32</version>
<version>1.0.33-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -95,11 +95,31 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
<version>3.8.0</version>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<source>1.7</source>
<target>1.7</target>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>compile9</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<release>9</release>
<includes>
<includes>module-info.java</includes>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
7 changes: 7 additions & 0 deletions src/module-info.java
@@ -0,0 +1,7 @@
open module org.jruby.joni {
exports org.joni;
exports org.joni.constants;
exports org.joni.exception;

requires org.jruby.jcodings;
}

0 comments on commit 51fff6e

Please sign in to comment.