File tree Expand file tree Collapse file tree 8 files changed +21
-10
lines changed
webauthn-server-attestation
src/main/scala/com/yubico Expand file tree Collapse file tree 8 files changed +21
-10
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ include ':webauthn-server-attestation'
3
3
include ' :webauthn-server-core'
4
4
include ' :webauthn-server-demo'
5
5
include ' :yubico-util'
6
+ include ' :yubico-util-scala'
6
7
7
8
include ' :test-dependent-projects:java-dep-webauthn-server-attestation'
8
9
include ' :test-dependent-projects:java-dep-webauthn-server-core'
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ dependencies {
24
24
)
25
25
26
26
testImplementation(
27
- testFixtures( project(' :yubico-util' ) ),
27
+ project(' :yubico-util-scala ' ),
28
28
testFixtures(project(' :webauthn-server-core' )),
29
29
addVersion(' junit:junit' ),
30
30
addVersion(' org.mockito:mockito-core' ),
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ dependencies {
32
32
)
33
33
34
34
testFixturesImplementation(
35
- testFixtures( project(' :yubico-util' ) ),
35
+ project(' :yubico-util-scala ' ),
36
36
addVersion(' com.upokecenter:cbor' ),
37
37
addVersion(' org.bouncycastle:bcpkix-jdk15on' ),
38
38
)
39
39
40
40
testImplementation(
41
- testFixtures( project(' :yubico-util' ) ),
41
+ project(' :yubico-util-scala ' ),
42
42
addVersion(' com.fasterxml.jackson.datatype:jackson-datatype-jdk8' ),
43
43
addVersion(' junit:junit' ),
44
44
addVersion(' org.mockito:mockito-core' ),
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ dependencies {
48
48
)
49
49
50
50
testImplementation(
51
- testFixtures( project(' :yubico-util' ) ),
51
+ project(' :yubico-util-scala ' ),
52
52
testFixtures(project(' :webauthn-server-core' )),
53
53
54
54
addVersion(' junit:junit' ),
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' scala'
3
+ }
4
+
5
+ description = ' Yubico internal Scala utilities'
6
+
7
+ dependencies {
8
+
9
+ implementation(
10
+ addVersion(' org.scala-lang:scala-library' ),
11
+ addVersion(' org.scalacheck:scalacheck_2.13' ),
12
+ )
13
+
14
+ }
15
+
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' java-library'
3
- id ' java-test-fixtures'
4
3
id ' scala'
5
4
}
6
5
@@ -22,12 +21,8 @@ dependencies {
22
21
addVersion(' org.slf4j:slf4j-api' ),
23
22
)
24
23
25
- testFixturesApi(
26
- addVersion(' org.scala-lang:scala-library' ),
27
- addVersion(' org.scalacheck:scalacheck_2.13' ),
28
- )
29
-
30
24
testImplementation(
25
+ project(' :yubico-util-scala' ),
31
26
addVersion(' junit:junit' ),
32
27
addVersion(' org.scala-lang:scala-library' ),
33
28
addVersion(' org.scalacheck:scalacheck_2.13' ),
You can’t perform that action at this time.
0 commit comments