mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-11-04 02:33:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			335 B
		
	
	
	
		
			Scala
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			335 B
		
	
	
	
		
			Scala
		
	
	
	
	
	
organization := ""
 | 
						|
version      := ""
 | 
						|
name         := ""
 | 
						|
scalaVersion := "2.12.20"
 | 
						|
 | 
						|
enablePlugins(PlayScala)
 | 
						|
 | 
						|
libraryDependencies ++= Seq(
 | 
						|
  guice,
 | 
						|
  ws,
 | 
						|
  "org.webjars" % "swagger-ui" % "3.1.5",
 | 
						|
  "org.scalatest"          %% "scalatest"          % "3.0.4" % Test,
 | 
						|
  "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
 | 
						|
)
 |