Skip to content

Commit

Permalink
[Truffle] Update Truffle to include my fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Oct 12, 2016
1 parent 8a4e539 commit d54a835
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mx.jruby/suite.py
Expand Up @@ -35,7 +35,7 @@ def mavenLib(mavenDep, sha1, sourceSha1):
{
"name": "truffle",
# Must be the same as in truffle/pom.rb (except for the -SNAPSHOT part only in pom.rb, and there we can use a release name)
"version": "26a836113b25ee06102940e88da92cc6016922b5",
"version": "af21c6632dbc4e8c48cd25d0b7d623d379c888e6",
"urls": [
{"url": "https://github.com/graalvm/truffle.git", "kind": "git"},
{"url": "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind": "binary"},
Expand Down
9 changes: 4 additions & 5 deletions truffle/pom.rb
Expand Up @@ -10,18 +10,17 @@
properties( 'polyglot.dump.pom' => 'pom.xml',
'polyglot.dump.readonly' => true,
# Must be the same as in mx.jruby/suite.py (except for the -SNAPSHOT part only in this file, and here we can use a release name)
'truffle.version' => '0.18',
'truffle.version' => 'af21c6632dbc4e8c48cd25d0b7d623d379c888e6-SNAPSHOT',
'jruby.basedir' => '${basedir}/..',
'maven.test.skip' => 'true' )

jar 'org.yaml:snakeyaml:1.14'
jar 'org.antlr:antlr4-runtime:4.5.1-1'

jar 'org.jruby:jruby-core', '${project.version}', :scope => 'provided'

#repository( :url => 'http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots/',
# :id => 'truffle' )


repository(:url => 'http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots/', :id => 'truffle')

truffle_version = '${truffle.version}'
jar 'com.oracle.truffle:truffle-api:' + truffle_version
jar 'com.oracle.truffle:truffle-debug:' + truffle_version
Expand Down
8 changes: 7 additions & 1 deletion truffle/pom.xml
Expand Up @@ -21,7 +21,7 @@ DO NOT MODIFIY - GENERATED CODE
<jruby.basedir>${basedir}/..</jruby.basedir>
<polyglot.dump.readonly>true</polyglot.dump.readonly>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
<truffle.version>0.18</truffle.version>
<truffle.version>af21c6632dbc4e8c48cd25d0b7d623d379c888e6-SNAPSHOT</truffle.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -68,6 +68,12 @@ DO NOT MODIFIY - GENERATED CODE
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>truffle</id>
<url>http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<build>
<defaultGoal>package</defaultGoal>
<resources>
Expand Down

2 comments on commit d54a835

@nirvdrum
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your fix for what? :-)

@eregon
Copy link
Member Author

@eregon eregon commented on d54a835 Oct 12, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't want to get the message too long :p
oracle/graal@674ff76

Please sign in to comment.