Skip to content

Commit 003c660

Browse files
committed
Port yubico-util-scala/build.gradle to build.gradle.kts
1 parent 4404e29 commit 003c660

File tree

2 files changed

+20
-23
lines changed

2 files changed

+20
-23
lines changed

yubico-util-scala/build.gradle

Lines changed: 0 additions & 23 deletions
This file was deleted.

yubico-util-scala/build.gradle.kts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
plugins {
2+
scala
3+
id("io.github.cosmicsilence.scalafix")
4+
}
5+
6+
description = "Yubico internal Scala utilities"
7+
8+
java {
9+
targetCompatibility = JavaVersion.VERSION_1_8
10+
}
11+
12+
dependencies {
13+
implementation(platform(rootProject))
14+
implementation(platform(project(":test-platform")))
15+
16+
implementation("org.scala-lang:scala-library")
17+
implementation("org.scalacheck:scalacheck_2.13")
18+
19+
testImplementation( "org.scalatest:scalatest_2.13")
20+
}

0 commit comments

Comments
 (0)