Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

Commit d673558

Browse files
author
Dwight Guth
committed
deprecation warning for https://github.com/kframework/k
1 parent 724fda6 commit d673558

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<!-- Copyright (c) 2010-2016 K Team. All Rights Reserved. -->
2+
# WARNING: https://github.com/kframework/k will be undergoing a force push on June 15, 2018, at which time it will be replaced with the contents of https://github.com/runtimeverification/k, which will be transferring ownership into this repository. Users who wish to upgrade to the new K 5.0 now can change their git config to https://github.com/runtimeverification/k now, and users who wish to continue using the existing kframework/k can stop breakages now by changing their git config to https://github.com/kframework/k-legacy.
3+
24
[ ![Codeship Status for kframework/k](https://codeship.com/projects/51591a00-a8f8-0133-7b85-7a8c162db443/status?branch=master)](https://codeship.com/projects/130795)
35
[![Join the chat at https://gitter.im/kframework/k](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/kframework/k?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
46

kernel/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
<dependency>
133133
<groupId>org.fusesource.jansi</groupId>
134134
<artifactId>jansi</artifactId>
135-
<version>1.11</version>
135+
<version>1.17</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>jline</groupId>

shell/src/main/java/org/kframework/main/Main.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import com.martiansoftware.nailgun.NGContext;
77
import org.apache.commons.lang3.tuple.Pair;
88
import org.fusesource.jansi.AnsiConsole;
9+
import org.fusesource.jansi.Ansi;
910
import org.kframework.HookProvider;
1011
import org.kframework.Kapi;
1112
import org.kframework.backend.Backends;
@@ -68,6 +69,7 @@ public class Main {
6869
*/
6970
public static void main(String[] args) {
7071
AnsiConsole.systemInstall();
72+
System.err.println(Ansi.ansi().fgBright(Ansi.Color.RED).a("[WARNING] https://github.com/kframework/k will be undergoing a force push on June 15, 2018. Please refer to README.md in the root of the repository for details.").fg(Ansi.Color.DEFAULT));
7173
if (args.length >= 1) {
7274
String[] args2 = Arrays.copyOfRange(args, 1, args.length);
7375
int result = runApplication(args[0], args2, new File("."), System.getenv());

0 commit comments

Comments
 (0)