mirror of
				https://github.com/gitbucket/gitbucket.git
				synced 2025-11-03 20:15:59 +01:00 
			
		
		
		
	* Update sbt-dependency-graph plugin installation According with https://github.com/sbt/sbt-dependency-graph#usage-instructions, for sbt >= 1.4.x we should install the plugin with `addDependencyTreePlugin` instead of `addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")` * Fix scalafmt
		
			
				
	
	
		
			12 lines
		
	
	
		
			552 B
		
	
	
	
		
			Scala
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			552 B
		
	
	
	
		
			Scala
		
	
	
	
	
	
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
 | 
						|
 | 
						|
addSbtPlugin("org.scalameta"    % "sbt-scalafmt"       % "2.4.3")
 | 
						|
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl"          % "1.5.1")
 | 
						|
addSbtPlugin("com.eed3si9n"     % "sbt-assembly"       % "1.0.0")
 | 
						|
addSbtPlugin("org.scalatra.sbt" % "sbt-scalatra"       % "1.0.4")
 | 
						|
addSbtPlugin("com.github.sbt"   % "sbt-pgp"            % "2.1.2")
 | 
						|
addSbtPlugin("com.typesafe.sbt" % "sbt-license-report" % "1.2.0")
 | 
						|
addSbtPlugin("org.scoverage"    % "sbt-scoverage"      % "1.8.2")
 | 
						|
 | 
						|
addDependencyTreePlugin
 |