diff options
| author | tricktron <tgagnaux@gmail.com> | 2021-12-11 11:54:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 11:54:24 +0100 |
| commit | 3c4bfaeb12fc7480782efd5f2f78831ab0761bbb (patch) | |
| tree | 9ad0075fb39be5601b551559519efe56979e4f78 /README.md | |
| parent | 8fed7811e535d3f8892ea16f7587e461ef1ee98e (diff) | |
| parent | e7b73f3a18c487efe6122e875f0b1ff96af3dd8f (diff) | |
| download | frege-gradle-plugin-1.5.0-alpha.tar.gz frege-gradle-plugin-1.5.0-alpha.tar.bz2 frege-gradle-plugin-1.5.0-alpha.zip | |
Merge pull request #13 from tricktron/f-repl-frege-v2v1.5.0-alpha
Frege Repl Refactoring
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -35,11 +35,11 @@ Optional configuration parameters inside `build.gradle`: - **setupFrege**: Downloads the specified version of the Frege compiler. - **compileFrege**: All your `*.fr` files in `mainSourceDir` get compiled to `outputDir`. - **runFrege**: Runs the Frege module specified by `mainModule`. Alternatively you can also pass the main module by command line, e.g: `gradle runFrege --mainModule=my.mod.Name`. -- **replFrege**: Starts the Frege REPL with the Frege compiler, `outputDir` and specified `dependencies` on the classpath. +- **replFrege**: Takes care of all project dependencies and prints the command to start the Frege REPL, e.g: `java -cp <your-correct-classpath-with-all-dependencies> frege.repl.FregeRepl`. -### Compile Dependencies +### Dependencies -Compile dependencies can be configured as expected in your `build.gradle` file, using the `implementation` scope, e.g.: +Dependencies can be configured as expected in your `build.gradle` file, using the `implementation` scope, e.g.: ```groovy repositories { |
