File tree 4 files changed +34
-0
lines changed
scala3.3.4-coverage-excluded-files/project
scala3.3.4-coverage-excluded-packages/project
4 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ sbt.version =1.9.9
Original file line number Diff line number Diff line change
1
+ val pluginVersion = sys.props.getOrElse(
2
+ " plugin.version" ,
3
+ throw new RuntimeException (
4
+ """ |The system property 'plugin.version' is not defined.
5
+ |Specify this property using the scriptedLaunchOpts -D.""" .stripMargin
6
+ )
7
+ )
8
+
9
+ addSbtPlugin(" org.scoverage" % " sbt-scoverage" % pluginVersion)
10
+
11
+ resolvers ++= {
12
+ if (pluginVersion.endsWith(" -SNAPSHOT" ))
13
+ Seq (Resolver .sonatypeRepo(" snapshots" ))
14
+ else
15
+ Seq .empty
16
+ }
Original file line number Diff line number Diff line change
1
+ sbt.version =1.9.9
Original file line number Diff line number Diff line change
1
+ val pluginVersion = sys.props.getOrElse(
2
+ " plugin.version" ,
3
+ throw new RuntimeException (
4
+ """ |The system property 'plugin.version' is not defined.
5
+ |Specify this property using the scriptedLaunchOpts -D.""" .stripMargin
6
+ )
7
+ )
8
+
9
+ addSbtPlugin(" org.scoverage" % " sbt-scoverage" % pluginVersion)
10
+
11
+ resolvers ++= {
12
+ if (pluginVersion.endsWith(" -SNAPSHOT" ))
13
+ Seq (Resolver .sonatypeRepo(" snapshots" ))
14
+ else
15
+ Seq .empty
16
+ }
You can’t perform that action at this time.
0 commit comments