Skip to content

Commit

Permalink
empty
Browse files Browse the repository at this point in the history
  • Loading branch information
rjolly committed Mar 7, 2020
1 parent dc2d199 commit 1785476
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bin/linoleum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
LINOLEUM=`readlink -f $0`
LINOLEUM_HOME=`dirname $LINOLEUM`/..
java -Djava.system.class.loader=linoleum.application.ClassLoader -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false -jar $LINOLEUM_HOME/linoleum.jar
java -Djava.system.class.loader=linoleum.application.ClassLoader -Dscala.usejavacp=true -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false -jar $LINOLEUM_HOME/linoleum.jar
2 changes: 1 addition & 1 deletion bin/linoleum.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
set LINOLEUM_HOME=%~dp0..
java -Dfile.encoding=UTF-8 -Djava.system.class.loader=linoleum.application.ClassLoader -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false -jar %LINOLEUM_HOME%\linoleum.jar
java -Dfile.encoding=UTF-8 -Djava.system.class.loader=linoleum.application.ClassLoader -Dscala.usejavacp=true -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false -jar %LINOLEUM_HOME%\linoleum.jar
1 change: 0 additions & 1 deletion complete/ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@
</dependency>
<dependency org="commons-io" name="commons-io" rev="1.3.1" conf="runtime->default"/>
<dependency org="com.googlecode.java-diff-utils" name="diffutils" rev="1.3.0" conf="runtime->default"/>
<dependency org="com.github.rjolly" name="jshellscriptengine" rev="1.0" conf="runtime->default"/>
</dependencies>
</ivy-module>
5 changes: 0 additions & 5 deletions complete/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,5 @@
<artifactId>diffutils</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.github.rjolly</groupId>
<artifactId>jshellscriptengine</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion init.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ function scaladoc(srcDir, destDir, options) {
Packages.scala.tools.nsc.ScalaDoc$.MODULE$.process(["-classpath", classpath(), "-d", dir].concat(options).concat(files));
}

// requires com.github.rjolly#jarlister_2.11;1.0
// requires com.github.rjolly#jarlister_2.11;1.1

function jarlister(path, out) {
var opts = [];
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ Scala
Scala 2.11

org.scala-lang#scala-compiler;2.11.0-M6 Compiler for the Scala Programming Language
com.github.rjolly#jarlister_2.11;1.0 A tools that lists a jars classes into its manifest
com.github.rjolly#jarlister_2.11;1.1 A tool that lists a jar's classes into its manifest

0 comments on commit 1785476

Please sign in to comment.