File tree Expand file tree Collapse file tree 4 files changed +19
-8
lines changed
swagger-play2-utils/project Expand file tree Collapse file tree 4 files changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import play.Project._
44
55object ApplicationBuild extends Build {
66 val appName = " swagger-play2-utils"
7- val appVersion = " 1.3.2 "
7+ val appVersion = " 1.3.3 "
88
99 val appDependencies : Seq [sbt.ModuleID ] = Seq (
1010 " org.slf4j" % " slf4j-api" % " 1.6.4" ,
Original file line number Diff line number Diff line change 11// Comment to get more information during initialization
2- logLevel := Level .Warn
2+ // logLevel := Level.Warn
33
4- // The Typesafe repository
5- resolvers += " Typesafe repository" at " http://repo.typesafe.com/typesafe/releases/"
4+ resolvers ++= Seq (
5+ " Local Maven Repository" at " file://" + Path .userHome.absolutePath+ " /.m2/repository" ,
6+ DefaultMavenRepository ,
7+ " Typesafe Repository" at " http://repo.typesafe.com/typesafe/releases/" ,
8+ " Typesafe Snapshots" at " http://repo.typesafe.com/typesafe/snapshots/" ,
9+ Resolver .url(" Play" , url(" http://download.playframework.org/ivy-releases/" ))(Resolver .ivyStylePatterns)
10+ )
11+
12+ resolvers += " Typesafe Snapshots" at " http://repo.typesafe.com/typesafe/snapshots/"
13+
14+ addSbtPlugin(" com.typesafe.play" % " sbt-plugin" % " 2.2.0" )
15+
16+ addSbtPlugin(" com.typesafe.sbt" % " sbt-pgp" % " 0.8.1" )
617
7- // Use the Play sbt plugin for Play projects
8- addSbtPlugin(" com.typesafe.play" % " sbt-plugin" % " 2.2.0" )
Original file line number Diff line number Diff line change @@ -359,6 +359,8 @@ class PlayApiReader(val routes: Option[Routes]) extends JaxrsApiReader {
359359 null
360360 }
361361
362-
362+ def findSubresourceType (method : Method ): Class [_] = {
363+ method.getReturnType
364+ }
363365}
364366
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import play.Project._
44
55object ApplicationBuild extends Build {
66 val appName = " swagger-play2"
7- val appVersion = " 1.3.2 "
7+ val appVersion = " 1.3.3 "
88
99 checksums in update := Nil
1010
You can’t perform that action at this time.
0 commit comments