diff --git a/nucleus/hk2/config-generator/pom.xml b/nucleus/hk2/config-generator/pom.xml index 6e4870c9afc..e7251762964 100644 --- a/nucleus/hk2/config-generator/pom.xml +++ b/nucleus/hk2/config-generator/pom.xml @@ -53,7 +53,6 @@ org.glassfish.hk2 hk2-utils - ${hk2.version} org.glassfish.main.hk2 @@ -79,5 +78,14 @@ jakarta.annotation jakarta.annotation-api + + + org.junit.jupiter + junit-jupiter-engine + + + org.hamcrest + hamcrest + diff --git a/nucleus/hk2/config-generator/src/test/java/com/sun/enterprise/tools/classmodel/UtilitiesTest.java b/nucleus/hk2/config-generator/src/test/java/com/sun/enterprise/tools/classmodel/UtilitiesTest.java index 2e819fd672f..3bf2cd5254b 100644 --- a/nucleus/hk2/config-generator/src/test/java/com/sun/enterprise/tools/classmodel/UtilitiesTest.java +++ b/nucleus/hk2/config-generator/src/test/java/com/sun/enterprise/tools/classmodel/UtilitiesTest.java @@ -1,4 +1,5 @@ /* + * Copyright (c) 2022 Contributors to the Eclipse Foundation * Copyright (c) 2007, 2018 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the @@ -16,9 +17,9 @@ package com.sun.enterprise.tools.classmodel; -import static org.junit.Assert.*; +import org.junit.jupiter.api.Test; -import org.junit.Test; +import static org.junit.jupiter.api.Assertions.assertEquals; public class UtilitiesTest {