Compare commits
1
Commits
ca1e3d5670
..
0.2.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e803452389 |
-24
@@ -1,24 +0,0 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: gradle
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: gradle:8.3.0-jdk17-graal
|
||||
commands:
|
||||
- gradle assemble
|
||||
- gradle check
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: maven
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: maven:3.9.4-eclipse-temurin-17-alpine
|
||||
commands:
|
||||
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
||||
- mvn test -B
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
package space.kklochko.simple_jbdd.annotations;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface Title {
|
||||
String value() default "Title";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user