Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed Rosetta to Rune at the top level #755

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@
</properties>

<modules>
<module>rosetta-xcore-plugin-dependencies</module>
<module>rosetta-runtime</module>
<module>rosetta-lang</module>
<module>rosetta-ide</module>
<module>rosetta-tools</module>
<module>rosetta-testing</module>
<module>rosetta-maven-plugin</module>
<module>rosetta-profiling</module>
<module>rune-xcore-plugin-dependencies</module>
<module>rune-runtime</module>
<module>rune-lang</module>
<module>rune-ide</module>
<module>rune-tools</module>
<module>rune-testing</module>
<module>rune-maven-plugin</module>
<module>rune-profiling</module>
</modules>

<dependencyManagement>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion rosetta-ide/pom.xml → rune-ide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<artifactId>com.regnosys.rosetta.ide</artifactId>

<description>
Responsibilities: adding support for developing Rosetta in an IDE, including
Responsibilities: adding support for developing Rune in an IDE, including
- language server features (semantic highlighting, inlay hints, etc)
- syntax highlighting
</description>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion rosetta-ide/vscode/README.md → rune-ide/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ git clone https://github.com/finos/rune-dsl.git
### Build and run

```
mvn clean install && cd rosetta-ide/vscode && npm install
mvn clean install && cd rune-ide/vscode && npm install
```

### Start VS Code
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions rosetta-lang/pom.xml → rune-lang/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<version>0.0.0.main-SNAPSHOT</version>
</parent>

<name>Rosetta DSL SDK</name>
<name>Rune DSL SDK</name>
<artifactId>com.regnosys.rosetta</artifactId>

<description>
Responsibilities: defining the core of the Rosetta DSL, including
Responsibilities: defining the core of the Rune DSL, including
- the AST
- parsing
- scoping and cross-reference resolution
Expand Down Expand Up @@ -107,22 +107,22 @@
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets combine.children="append">
<!-- rosetta-lang -->
<!-- rune-lang -->
<fileset>
<directory>${basedir}/../rosetta-lang/src-gen</directory>
<directory>${basedir}/../rune-lang/src-gen</directory>
<includes>
<include>**/*</include>
</includes>
</fileset>
<fileset>
<directory>${basedir}/../rosetta-lang/emf-gen</directory>
<directory>${basedir}/../rune-lang/emf-gen</directory>
<includes>
<include>**/*</include>
</includes>
</fileset>
<!-- rosetta-ide -->
<!-- rune-ide -->
<fileset>
<directory>${basedir}/../rosetta-ide/src-gen/</directory>
<directory>${basedir}/../rune-ide/src-gen/</directory>
<includes>
<include>**/*</include>
</includes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ Workflow {
createEclipseMetaData = false
runtime = {
enabled = true
name = "rosetta-lang"
root = "${parentDir}/rosetta-lang"
src = "${parentDir}/rosetta-lang/src/main/java"
srcGen = "${parentDir}/rosetta-lang/src-gen/main/java"
name = "rune-lang"
root = "${parentDir}/rune-lang"
src = "${parentDir}/rune-lang/src/main/java"
srcGen = "${parentDir}/rune-lang/src-gen/main/java"
}
runtimeTest = {
enabled = true
name = "rosetta-testing"
root = "${parentDir}/rosetta-testing"
src = "${parentDir}/rosetta-testing/src/test/java"
srcGen = "${parentDir}/rosetta-testing/src-gen/main/java"
name = "rune-testing"
root = "${parentDir}/rune-testing"
src = "${parentDir}/rune-testing/src/test/java"
srcGen = "${parentDir}/rune-testing/src-gen/main/java"
}
genericIde = {
enabled = true
name = "rosetta-ide"
root = "${parentDir}/rosetta-ide"
src = "${parentDir}/rosetta-ide/src/main/java"
srcGen = "${parentDir}/rosetta-ide/src-gen/main/java"
name = "rune-ide"
root = "${parentDir}/rune-ide"
src = "${parentDir}/rune-ide/src/main/java"
srcGen = "${parentDir}/rune-ide/src-gen/main/java"
}
eclipsePlugin = {
enabled = false
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions rosetta-maven-plugin/pom.xml → rune-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
<artifactId>rosetta-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>

<name>Rosetta DSL Maven Plugin</name>
<name>Rune DSL Maven Plugin</name>
<description>
Responsibilities: calling the Rosetta code generator from Maven.
Responsibilities: calling the Rune DSL code generator from Maven.
</description>

<dependencies>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion rosetta-profiling/pom.xml → rune-profiling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>0.0.0.main-SNAPSHOT</version>
</parent>

<name>Profiling tools for the Rosetta DSL.</name>
<name>Profiling tools for the Rune DSL.</name>
<artifactId>com.regnosys.rosetta.profiling</artifactId>
<packaging>jar</packaging>

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion rosetta-runtime/pom.xml → rune-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<version>0.0.0.main-SNAPSHOT</version>
</parent>

<name>Rosetta DSL Runtime</name>
<name>Rune DSL Runtime</name>
<artifactId>com.regnosys.rosetta.lib</artifactId>

<description>
Expand Down
Loading
Loading