@@ -8,13 +8,13 @@ lazy val commonSettings = Seq(
88 Developer (
99 " jeanmarc" ,
1010 " Jean-Marc van Leerdam" ,
11- " jean-marc.van.leerdam@ordina.nl " ,
12- url(" https://github .com/jeanmarc " )
11+ " jean-marc.vanleerdam@soprasteria.com " ,
12+ url(" https://soprasteria .com" )
1313 )
1414 )
1515)
1616
17- lazy val root = ( project in file(" ." ))
17+ lazy val root = project.in( file(" ." ))
1818 .aggregate(plugin)
1919 .settings(
2020 name := " sbt-azure-functions-plugin" ,
@@ -24,7 +24,7 @@ lazy val root = (project in file("."))
2424 publish := {}
2525 )
2626
27- lazy val plugin = ( project in file(" plugin" ))
27+ lazy val plugin = project.in( file(" plugin" ))
2828 .enablePlugins(SbtPlugin )
2929 .settings(
3030 name := " sbt-azure-functions" ,
@@ -48,14 +48,14 @@ lazy val plugin = (project in file("plugin"))
4848 " org.scalatest" %% " scalatest" % " 3.2.2" % " test" ,
4949 " org.scala-sbt" %% " scripted-plugin" % sbtVersion.value
5050 ),
51- addSbtPlugin(" com.eed3si9n" % " sbt-assembly" % " 0.14.10 " ),
51+ addSbtPlugin(" com.eed3si9n" % " sbt-assembly" % " 2.3.1 " ),
5252 scriptedLaunchOpts := {
5353 scriptedLaunchOpts.value ++
5454 Seq (" -Xmx1024M" , " -Dplugin.version=" + version.value)
5555 },
5656 scriptedBufferLog := false ,
57- logBuffered in Test := false ,
58- publishArtifact in Test := false
57+ Test / logBuffered := false ,
58+ Test / publishArtifact := false
5959 )
6060
6161// workaround for interactive sessions that do not echo the user input (https://github.com/sbt/sbt-bintray/issues/177)
0 commit comments