sbt/project
xuwei-k 5b00e7326b s/newInstance/getDeclaredConstructor().newInstance()
java.lang.Class#newInstance deprecated since Java 9

http://download.java.net/java/jdk9/docs/api/java/lang/Class.html#newInstance--

```
Deprecated. This method propagates any exception thrown by the nullary constructor, including a checked exception. Use of this method effectively bypasses the compile-time exception checking that would otherwise be performed by the compiler. The Constructor.newInstance method avoids this problem by wrapping any exception thrown by the constructor in a (checked) InvocationTargetException.
The call

 clazz.newInstance()

can be replaced by

 clazz.getDeclaredConstructor().newInstance()

The latter sequence of calls is inferred to be able to throw the additional exception types InvocationTargetException and NoSuchMethodException. Both of these exception types are subclasses of ReflectiveOperationException.
Creates a new instance of the class represented by this Class object. The class is instantiated as if by a new expression with an empty argument list. The class is initialized if it has not already been initialized.
```
2017-03-15 11:53:49 +09:00
..
ContrabandConfig.scala -sbinary/+sjson-new, -datatype/+contraband & upgrades 2017-01-05 21:59:00 +00:00
Dependencies.scala Fix xml and parser-combinator versions 2017-01-16 11:44:03 -05:00
Docs.scala
Formatting.scala Upgrade scalariform version 2016-12-11 12:13:11 +00:00
NightlyPlugin.scala
PublishBinPlugin.scala Make sure publishLocalBin has a default implementation 2016-12-11 12:13:11 +00:00
Release.scala Allow jdk1.8 2016-09-26 22:45:24 +02:00
SbtLauncherPlugin.scala
Scripted.scala s/newInstance/getDeclaredConstructor().newInstance() 2017-03-15 11:53:49 +09:00
SiteMap.scala
StatusPlugin.scala
Sxr.scala
Transform.scala Tweak launchconfig config [fport] 2016-11-16 14:42:15 +00:00
Util.scala Use Scala 2.12.1 2017-01-15 20:49:14 -05:00
build.properties Bump to sbt 0.13.13 2016-12-11 12:08:28 +00:00
contraband.sbt -sbinary/+sjson-new, -datatype/+contraband & upgrades 2017-01-05 21:59:00 +00:00
plugins.sbt Split log output per channel 2017-01-13 03:00:02 -05:00