-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOREL-7] Rename project from 'smlj' to 'morel'
- Loading branch information
1 parent
2acb5ca
commit 11d1846
Showing
80 changed files
with
326 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,18 +18,20 @@ language governing permissions and limitations under the | |
License. | ||
{% endcomment %} | ||
--> | ||
# smlj | ||
Standard ML interpreter, implemented in Java | ||
# Morel | ||
Standard ML interpreter, with relational extensions, implemented in Java | ||
|
||
(Until version 0.1, Morel was known as smlj.) | ||
|
||
## Requirements | ||
|
||
Java version 8 or higher. | ||
|
||
## Get smlj | ||
## Get Morel | ||
|
||
### From Maven | ||
|
||
Get smlj from | ||
Get Morel from | ||
<a href="https://search.maven.org/#search%7Cga%7C1%7Cg%3Anet.hydromatic%20a%3Asmlj">Maven Central</a>: | ||
|
||
```xml | ||
|
@@ -43,8 +45,8 @@ Get smlj from | |
### Download and build | ||
|
||
```bash | ||
$ git clone git://github.com/julianhyde/smlj.git | ||
$ cd smlj | ||
$ git clone git://github.com/julianhyde/morel.git | ||
$ cd morel | ||
$ ./mvnw install | ||
``` | ||
|
||
|
@@ -57,8 +59,8 @@ On Windows, the last line is | |
### Run the shell | ||
|
||
```bash | ||
$ ./smlj | ||
smlj version 0.1.0 (java version "11.0.4", JLine terminal, xterm-256color) | ||
$ ./morel | ||
morel version 0.1.0 (java version "11.0.4", JLine terminal, xterm-256color) | ||
= "Hello, world!"; | ||
val it = "Hello, world!" : string | ||
= exit | ||
|
@@ -215,12 +217,12 @@ the sub-query returns, just whether it returns any rows). | |
|
||
* License: <a href="LICENSE">Apache License, Version 2.0</a> | ||
* Author: Julian Hyde (<a href="https://twitter.com/julianhyde">@julianhyde</a>) | ||
* Project page: https://www.hydromatic.net/smlj | ||
* API: https://www.hydromatic.net/smlj/apidocs | ||
* Source code: https://github.com/julianhyde/smlj | ||
* Project page: https://www.hydromatic.net/morel | ||
* API: https://www.hydromatic.net/morel/apidocs | ||
* Source code: https://github.com/julianhyde/morel | ||
* Developers list: | ||
<a href="mailto:[email protected]">dev at calcite.apache.org</a> | ||
(<a href="https://mail-archives.apache.org/mod_mbox/calcite-dev/">archive</a>, | ||
<a href="mailto:[email protected]">subscribe</a>) | ||
* Issues: https://github.com/julianhyde/smlj/issues | ||
* Issues: https://github.com/julianhyde/morel/issues | ||
* <a href="HISTORY.md">Release notes and history</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,13 +26,13 @@ License. | |
<version>0.1</version> | ||
</parent> | ||
|
||
<artifactId>smlj</artifactId> | ||
<artifactId>morel</artifactId> | ||
<version>0.2.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>smlj</name> | ||
<description>Standard ML interpreter, implemented in Java</description> | ||
<url>https://github.com/julianhyde/smlj</url> | ||
<name>morel</name> | ||
<description>Standard ML interpreter, with relational extensions, implemented in Java</description> | ||
<url>https://github.com/julianhyde/morel</url> | ||
<inceptionYear>2019</inceptionYear> | ||
<organization> | ||
<name>Julian Hyde</name> | ||
|
@@ -100,28 +100,28 @@ License. | |
<slf4j.version>1.7.25</slf4j.version> | ||
|
||
<maven-javadoc-plugin.additionalOptions>-html5</maven-javadoc-plugin.additionalOptions> | ||
<maven-javadoc-plugin.excludePackageNames>net.hydromatic.sml.parse</maven-javadoc-plugin.excludePackageNames> | ||
<maven-javadoc-plugin.excludePackageNames>net.hydromatic.morel.parse</maven-javadoc-plugin.excludePackageNames> | ||
<maven-javadoc-plugin.link>https://docs.oracle.com/javase/9/docs/api/</maven-javadoc-plugin.link> | ||
</properties> | ||
|
||
<!-- Environment settings. --> | ||
<distributionManagement> | ||
<site> | ||
<id>smlj.website</id> | ||
<name>smlj web site</name> | ||
<url>file:/home/jhyde/web2/smlj</url> | ||
<id>morel.website</id> | ||
<name>morel web site</name> | ||
<url>file:/home/jhyde/web2/morel</url> | ||
</site> | ||
</distributionManagement> | ||
|
||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/julianhyde/smlj/issues</url> | ||
<url>https://github.com/julianhyde/morel/issues</url> | ||
</issueManagement> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/julianhyde/smlj.git</connection> | ||
<developerConnection>scm:git:[email protected]:julianhyde/smlj.git</developerConnection> | ||
<url>scm:git:git://github.com/julianhyde/smlj.git</url> | ||
<connection>scm:git:git://github.com/julianhyde/morel.git</connection> | ||
<developerConnection>scm:git:[email protected]:julianhyde/morel.git</developerConnection> | ||
<url>scm:git:git://github.com/julianhyde/morel.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
|
@@ -366,7 +366,7 @@ License. | |
</goals> | ||
<configuration> | ||
<includes> | ||
<include>**/SmlParser.jj</include> | ||
<include>**/MorelParser.jj</include> | ||
</includes> | ||
<lookAhead>1</lookAhead> | ||
<isStatic>false</isStatic> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.