@@ -18,14 +18,10 @@ lazy val commonSettings = Seq(
1818 githubProject := " cedi-dtrace" ,
1919 parallelExecution in Global := ! scala.util.Properties .propIsSet(" disableParallel" ),
2020 crossScalaVersions := Seq (" 2.12.8" , " 2.11.12" ),
21- scalacOptions ~= (_.filter(opt => opt != " -Xlint" && opt != " -Ywarn-unused" )),
22- scalacOptions in Test ~= (_.filter(opt => opt != " -Xlint" && opt != " -Ywarn-unused" )),
2321 contributors ++= Seq (
2422 Contributor (" sbuzzard" , " Steve Buzzard" ),
2523 Contributor (" mpilquist" , " Michael Pilquist" )
2624 ),
27- scalacOptions ~= (_.filter(opt => opt != " -Xlint" && opt != " -Ywarn-unused" )),
28- scalacOptions in Test ~= (_.filter(opt => opt != " -Xlint" && opt != " -Ywarn-unused" )),
2925 libraryDependencies ++= Seq (
3026 " org.typelevel" %% " cats-core" % catsCoreVersion,
3127 " org.typelevel" %% " cats-effect" % catsEffectVersion
@@ -39,7 +35,19 @@ lazy val commonSettings = Seq(
3935 " org.scalacheck" %% " scalacheck" % " 1.13.5" % " test"
4036 )
4137 }),
42- addCompilerPlugin(" org.spire-math" %% " kind-projector" % " 0.9.9" )
38+ addCompilerPlugin(" org.spire-math" %% " kind-projector" % " 0.9.9" ),
39+ pomExtra := (
40+ <url >http:// github.com/ ccadllc/ {githubProject.value}</url >
41+ <developers >
42+ {for (Contributor (username, name) <- contributors.value) yield
43+ <developer >
44+ <id >{username}</id >
45+ <name >{name}</name >
46+ <url >https:// github.com/ {username}</url >
47+ </developer >
48+ }
49+ </developers >
50+ )
4351)
4452
4553lazy val root = project.in(file(" ." )).aggregate(
0 commit comments