Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4c245fa
Migrate cbor tests
JooHyukKim Jan 12, 2025
da88512
Migrate remaining
JooHyukKim Jan 12, 2025
b303f3c
Fix test error
JooHyukKim Jan 12, 2025
55970d8
Migrate `smile` module tests to JUnit 5
JooHyukKim Jan 12, 2025
4243b09
Migrate `smile` module tests to JUnit 5
JooHyukKim Jan 12, 2025
1c50106
Clean up tests
JooHyukKim Jan 12, 2025
c302c3c
Remove other test module changes
JooHyukKim Jan 12, 2025
49d55bd
Update SmileFactoryPropertiesTest.java
JooHyukKim Jan 12, 2025
c263213
Update JacksonTestFailureExpected.java
JooHyukKim Jan 12, 2025
83dd5fc
Put back comments
JooHyukKim Jan 12, 2025
77c0ee5
Merge branch '2.19' into joohyukkim/2.19/547-migrate-cbor-module
cowtowncoder Jan 12, 2025
a7c6a34
Merge branch '2.19' into joohyukkim/2.19/547-migrate-cbor-module
cowtowncoder Jan 12, 2025
bda4f97
Merge branch '2.19' into joohyukkim/2.19/547-migrate-smile-module
cowtowncoder Jan 12, 2025
ab85291
Merge branch 'joohyukkim/2.19/547-migrate-cbor-module' into JooHyukKi…
JooHyukKim Jan 13, 2025
af0c071
Migrate all `/failing` tests to `/tofix`
JooHyukKim Jan 13, 2025
b13b5d9
Isolate JUnit4 to `avro` module's `interop` tests
JooHyukKim Jan 13, 2025
faa3520
Merge branch '2.19' into joohyukkim/2.19/547-isolate-junit4
cowtowncoder Jan 14, 2025
6865032
Merge branch '2.19' into joohyukkim/2.19/547-isolate-junit4
cowtowncoder Jan 14, 2025
b103f0e
Merge branch '2.19' into joohyukkim/2.19/547-isolate-junit4
cowtowncoder Jan 14, 2025
f69516a
Merge branch '2.19' into joohyukkim/2.19/547-isolate-junit4
cowtowncoder Jan 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions avro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ abstractions.
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>

<!-- 14-Jan-2025, joohyukkim: [JSTEP-10] Most tests have been migrated to
JUnit5, but except `avro` modules `/interop` tests
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,6 @@
<artifactId>jackson-core</artifactId>
</dependency>

<!-- 20-Apr-2024, tatu: JUnit4 no longer from jackson-base, so: -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- 11-Jan-2025, joohyukkim: For JSTEP-10, migrate to JUnit5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down