com.cognodyne.riptide.test.Application Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit5-test Show documentation
Show all versions of junit5-test Show documentation
Opinionated Undertow + CDI Microservice platform
The newest version!
/*
* (c) Copyright 2021 Palantir Technologies Inc. All rights reserved.
*/
package com.cognodyne.riptide.test;
import com.cognodyne.riptide.core.config.ApplicationConfiguration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Application {
Class extends com.cognodyne.riptide.core.Application extends ApplicationConfiguration>> applicationClass();
String[] args() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy