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/
| #!/bin/bash | |
| START_SCRIPT={{ start_script }} | |
| PID_FILE={{ pid_file }} | |
| # *********************************************** | |
| # *********************************************** | |
| ARGS="" # optional start script arguments | |
| DAEMON=$START_SCRIPT |
| #!/bin/bash | |
| MAIN_CLASS={{ main_class }} | |
| APP_CONFIG={{ app_config }} | |
| LOG_CONFIG={{ log_config }} | |
| BIN_DIR={{ bin_dir }} | |
| # *********************************************** | |
| # *********************************************** |
| package com.example | |
| class MyClass { | |
| def hello = "Hello world" | |
| def prime = 11 | |
| def isAwesome = true | |
| } |
| data: text/html, | |
| <html> | |
| <head> | |
| <title>Notepad</title> | |
| <link rel="icon" type="image/png" href="http://icons.iconarchive.com/icons/hopstarter/sleek-xp-software/256/Notepad-icon.png"> | |
| <script src="http://code.jquery.com/jquery-2.0.3.min.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $('#text').bind('keyup', function() { | |
| var content = $(this).val(); |
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/