Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

scala - Re-run with -feature for details

When I compile scala in play console, I got this:

[warn] there were 1 feature warning(s); re-run with -feature for details
[warn] one warning found

I thought it means compile -feature, but I got this:

[error] Expected ID character
[error] Not a valid command: compile (similar: completions)
[error] Expected project ID
[error] Expected configuration
[error] Expected ':' (if selecting a configuration)
[error] Expected key
[error] Expected '::'
[error] Expected end of input.
[error] compile -feature
[error]     

Then I run play -feature, I got this:

[warn] The `-` command is deprecated in favor of `onFailure` and will be removed in 0.14.0

And play quit.

So how should I do this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You have to add

scalacOptions += "-feature"

to your build.sbt and execute reload if your sbt console is running (or restart it).

Alternatively if you want to set it only for a single session, while in sbt console.

set scalacOptions += "-feature"

You can write, this setting is applied immediately, no need to reload or restart sbt console.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...