Instructions on how to reproduce sbt global plugin reload bug. Related links:
https://groups.google.com/forum/?hl=en&fromgroups=#!topic/simple-build-tool/x33MRCzNpww sbt/sbt#272
~/SbtHome/ # used as sbt.global.base
plugins/
| package org.halfcup.scala.learn.vary | |
| class Toy{ | |
| override def toString():String = { | |
| "Toy" | |
| } | |
| } | |
| class Ball extends Toy{ | |
| override def toString():String = { |
| package org.halfcup.scala | |
| import scala.annotation._ | |
| object TestTailRec { | |
| def main(args: Array[String]): Unit = { | |
| val list = List("one", "two", "three", "four", "five", "six", "seven", "eight", "nine","ten") | |
| def maxWidth(s: List[String]) = { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- IF PEN IS PRIVATE --> | |
| <!-- <meta name="robots" content="noindex"> --> | |
| <!-- END --> |
Instructions on how to reproduce sbt global plugin reload bug. Related links:
https://groups.google.com/forum/?hl=en&fromgroups=#!topic/simple-build-tool/x33MRCzNpww sbt/sbt#272
~/SbtHome/ # used as sbt.global.base
plugins/