@@ -18,14 +18,10 @@ lazy val commonSettings = Seq(
18
18
githubProject := " cedi-dtrace" ,
19
19
parallelExecution in Global := ! scala.util.Properties .propIsSet(" disableParallel" ),
20
20
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" )),
23
21
contributors ++= Seq (
24
22
Contributor (" sbuzzard" , " Steve Buzzard" ),
25
23
Contributor (" mpilquist" , " Michael Pilquist" )
26
24
),
27
- scalacOptions ~= (_.filter(opt => opt != " -Xlint" && opt != " -Ywarn-unused" )),
28
- scalacOptions in Test ~= (_.filter(opt => opt != " -Xlint" && opt != " -Ywarn-unused" )),
29
25
libraryDependencies ++= Seq (
30
26
" org.typelevel" %% " cats-core" % catsCoreVersion,
31
27
" org.typelevel" %% " cats-effect" % catsEffectVersion
@@ -39,7 +35,19 @@ lazy val commonSettings = Seq(
39
35
" org.scalacheck" %% " scalacheck" % " 1.13.5" % " test"
40
36
)
41
37
}),
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
+ )
43
51
)
44
52
45
53
lazy val root = project.in(file(" ." )).aggregate(
0 commit comments