Skip to content

Commit

Permalink
Merge pull request #42 from Frege/feature/3.23.370
Browse files Browse the repository at this point in the history
Upgrade to 3.23.370; Use local frege until available in central
  • Loading branch information
mmhelloworld committed Oct 19, 2015
2 parents d4242a9 + 4444e50 commit 08502ef
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ In addition to Frege code, the following commands are supported:

##How to run?##
1. Download Frege REPL archive from [releases](https://github.com/Frege/frege-repl/releases).
2. Extract the archive
3. Run the following command: (JRE 7 or above required) <BR/>
* `$ fregei-1.2.1-SNAPSHOT/bin/fregei`
1. Extract the archive
1. Run the following command: (JRE 7 or above required)
* `$ frege-repl-<version>/bin/frege-repl`

##Build from sources##

1. ```~/workspace$ git clone https://github.com/Frege/frege-repl.git```
2. ```~/workspace/frege-repl$ ./gradlew install```
3. To run, ```~/workspace/frege-repl$ ./gradlew --console plain :frege-repl-core:run```. If you are using Gradle daemon, please make sure to add `--no-daemon`.
1. ```~/workspace/frege-repl$ ./gradlew install```
1. To run, ```~/workspace/frege-repl$ ./gradlew --no-daemon --console plain :frege-repl-core:run```.

## Continuous Integration

Travis: https://travis-ci.org/Frege/frege-repl/
[Travis](https://travis-ci.org/Frege/frege-repl/)

Sonatype: https://oss.sonatype.org/content/groups/public/org/frege-lang/
[Sonatype](https://oss.sonatype.org/content/groups/public/org/frege-lang/)

6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ subprojects {
snapshotAppendix = "-SNAPSHOT"
projectVersion = baseVersion + (isSnapshot ? snapshotAppendix : "")

fregeInterpreterVersion = "1.2"
fregeBaseVersion = "3.23.370"
fregeClassifier = "-g898bc8c"
fregeVersion = "$fregeBaseVersion$fregeClassifier"
fregeInterpreterVersion = "1.3-SNAPSHOT"
}

apply from: "$rootDir/gradle/sonatype.gradle"
Expand All @@ -56,6 +59,7 @@ subprojects {
}

dependencies {
compile files("$project.rootDir/lib/frege-${fregeVersion}.jar")
compile "org.frege-lang:frege-interpreter-core:$fregeInterpreterVersion"
}

Expand Down
2 changes: 1 addition & 1 deletion frege-repl-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: "org.frege-lang"
apply plugin: "application"

mainClassName = "frege.repl.FregeRepl"
applicationName = "fregei"
applicationName = "frege-repl"

compileTestFrege {
enabled = false
Expand Down
Binary file added lib/frege-3.23.370-g898bc8c.jar
Binary file not shown.
Binary file removed resources/images/frege-repl-help.gif
Binary file not shown.

0 comments on commit 08502ef

Please sign in to comment.