Skip to content

Commit

Permalink
Updated docs to use literal version numbers in code blocks
Browse files Browse the repository at this point in the history
We will have to run sed to replace the version numbers after
a renjin release
  • Loading branch information
akbertram committed Dec 5, 2016
1 parent 8b02806 commit 00a1a4e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions source/library/project-setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Renjin's Script Engine as dependency to your project:
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.8.2293</version>
<version>99999</version>
</dependency>
</dependencies>
Expand Down Expand Up @@ -54,7 +54,7 @@ For projects organized with Gradle, add the following to your ``build.gradle`` f
}
dependencies {
compile "org.renjin:renjin-script-engine:0.8.2293";
compile "org.renjin:renjin-script-engine:99999";
}
Scala Build Tool (SBT)
Expand All @@ -73,7 +73,7 @@ Renjin's Script Engine:
name := "renjin-test",
version := "1.0",
scalaVersion := "2.10.6",
libraryDependencies += "org.renjin" % "renjin-script-engine" % "0.8.2293"
libraryDependencies += "org.renjin" % "renjin-script-engine" % "99999"
)
Eclipse
Expand Down Expand Up @@ -105,7 +105,7 @@ a specific ``module.xml`` file:
<module xmlns="urn:jboss:module:1.1" name="org.renjin">
<resources>
<resource-root path="renjin-script-engine-0.8.2293-jar-with-dependencies.jar"/>
<resource-root path="renjin-script-engine-99999-jar-with-dependencies.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down Expand Up @@ -136,7 +136,7 @@ to `spark-submit` or `dse spark-submit`.
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.8.2293</version>
<version>99999</version>
</dependency>
<dependency>
Expand Down
7 changes: 4 additions & 3 deletions source/writing-renjin-extensions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,20 +102,21 @@ packages:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<renjin.version>0.8.2297</renjin.version>
</properties>
<dependencies>
<!-- the script engine is convenient even if you do not use it explicitly -->
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.7.0-RC7</version>
<version>${renjin.version}</version>
</dependency>
<!-- the hamcrest package is only required if you use it for unit tests -->
<dependency>
<groupId>org.renjin</groupId>
<artifactId>hamcrest</artifactId>
<version>0.7.0-RC7</version>
<version>${renjin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -141,7 +142,7 @@ packages:
<plugin>
<groupId>org.renjin</groupId>
<artifactId>renjin-maven-plugin</artifactId>
<version>0.7.0-RC7</version>
<version>${renjin.version}</version>
<executions>
<execution>
<id>build</id>
Expand Down

0 comments on commit 00a1a4e

Please sign in to comment.