-
-
Notifications
You must be signed in to change notification settings - Fork 420
Upgrade Mill to 213 #723
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
Upgrade Mill to 213 #723
Changes from all commits
be44722
b19d3f4
64e8761
49e6c7e
b24e4ec
aaf850e
fcedee5
4561bda
ddd0de9
8b74392
666c177
0964de8
995b857
18c8800
a365290
b3895ff
5e2ce1f
0021999
fade92a
a2dc8e3
00aa64c
09ee46f
ea6ad93
7752afe
8212946
6fb7af4
f3b6383
911295b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| * via import $file | ||
| */ | ||
|
|
||
| import $ivy.`org.scalaj::scalaj-http:2.4.1` | ||
| import $ivy.`org.scalaj::scalaj-http:2.4.2` | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a thought. Would it be possible to move the
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure, that would require using Ammonite's multi-stage scripts which I don't remember if Mill supports or not |
||
| import ammonite.ops.{write, Path, mkdir, RelPath, up} | ||
|
|
||
| def argNames(n: Int) = { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| package mill.playlib.api; | ||
|
|
||
| public enum RouteCompilerType{ | ||
| InjectedGenerator, | ||
| StaticGenerator | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| package mill.playlib.api; | ||
| public interface RouteCompilerWorkerApi { | ||
| String compile(java.io.File[] files, | ||
| String[] additionalImports, | ||
| boolean forwardsRouter, | ||
| boolean reverseRouter, | ||
| boolean namespaceReverseRouter, | ||
| RouteCompilerType generatorType, | ||
| java.io.File dest); | ||
|
|
||
|
|
||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| package mill.playlib.api; | ||
| public class Versions { | ||
| public static final String PLAY_2_6 = "2.6"; | ||
| public static final String PLAY_2_7 = "2.7"; | ||
| } |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.