Skip to content

Commit

Permalink
Rename kernel to k-frontend.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott-Guest committed Apr 21, 2024
1 parent a2929e7 commit 7791f8e
Show file tree
Hide file tree
Showing 324 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile.maven-cache
Expand Up @@ -23,7 +23,7 @@ ADD pom.xml /home/$USER/.tmp-
ADD llvm-backend/pom.xml /home/$USER/.tmp-maven/llvm-backend/
ADD llvm-backend/src/main/native/llvm-backend/matching/pom.xml /home/$USER/.tmp-maven/llvm-backend/src/main/native/llvm-backend/matching/
ADD haskell-backend/pom.xml /home/$USER/.tmp-maven/haskell-backend/
ADD kernel/pom.xml /home/$USER/.tmp-maven/kernel/
ADD k-frontend/pom.xml /home/$USER/.tmp-maven/k-frontend/
ADD k-distribution/pom.xml /home/$USER/.tmp-maven/k-distribution/

RUN cd /home/$USER/.tmp-maven && mvn --batch-mode dependency:go-offline
2 changes: 1 addition & 1 deletion flake.nix
Expand Up @@ -54,7 +54,7 @@

k-framework = { haskell-backend-bins, llvm-kompile-libs }:
prev.callPackage ./nix/k.nix {
mvnHash = "sha256-R0lpOuz79szCLU+TaveYz5F7Lo7KtiYHJ9Nb7O2bczQ=";
mvnHash = "sha256-jJuIyObMoBWBLLU4hK9kt4q520D9MglyDk8Lbj+xYnE=";
manualMvnArtifacts = [
"org.scala-lang:scala-compiler:2.13.13"
"ant-contrib:ant-contrib:1.0b3"
Expand Down
2 changes: 1 addition & 1 deletion haskell-backend/pom.xml
Expand Up @@ -16,7 +16,7 @@
<dependencies>
<dependency>
<groupId>com.runtimeverification.k</groupId>
<artifactId>kernel</artifactId>
<artifactId>k-frontend</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion k-distribution/pom.xml
Expand Up @@ -22,7 +22,7 @@
<dependencies>
<dependency>
<groupId>com.runtimeverification.k</groupId>
<artifactId>kernel</artifactId>
<artifactId>k-frontend</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions kernel/pom.xml → k-frontend/pom.xml
Expand Up @@ -8,10 +8,10 @@
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>kernel</artifactId>
<artifactId>k-frontend</artifactId>
<packaging>jar</packaging>

<name>K Framework Tool Kernel</name>
<name>K Framework Frontend</name>

<dependencies>
<dependency>
Expand Down
Expand Up @@ -43,7 +43,7 @@ public static String getKBase() {
* Returns the absolute path of the includes directory. Paths are computed relative to the
* location this class is running from. When it is run from a jar file it assumes it is in a k
* installation at lib/java/*.jar. When it is run from a .class file it assumes it is running
* within the K source project, from a class in kernel/target/classes/, and returns a path to
* within the K source project, from a class in k-frontend/target/classes/, and returns a path to
* k-distribution/include
*
* @return
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7791f8e

Please sign in to comment.