io.quarkus.arc.test.supplement.SomeBeanInExternalLibrary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-arc-test-supplement Show documentation
Show all versions of quarkus-arc-test-supplement Show documentation
Supplement archive for ArC tests
The newest version!
package io.quarkus.arc.test.supplement;
import jakarta.enterprise.context.Dependent;
@Dependent
public class SomeBeanInExternalLibrary implements SomeInterfaceInExternalLibrary {
@Override
public String hello() {
return "Hello";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy