File tree Expand file tree Collapse file tree 5 files changed +17
-10
lines changed
src/main/java/io/avaje/inject Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 11
11
12
12
<properties >
13
13
<jupiter .version>5.8.2</jupiter .version>
14
- <mockito .version>4.6.0 </mockito .version>
14
+ <mockito .version>4.6.1 </mockito .version>
15
15
</properties >
16
16
17
17
<dependencies >
58
58
<dependency >
59
59
<groupId >io.avaje</groupId >
60
60
<artifactId >avaje-http-api</artifactId >
61
- <version >1.11 </version >
61
+ <version >1.17 </version >
62
62
<scope >test</scope >
63
63
</dependency >
64
64
65
65
<dependency >
66
66
<groupId >io.avaje</groupId >
67
67
<artifactId >avaje-jex</artifactId >
68
- <version >2.1 </version >
68
+ <version >2.2 </version >
69
69
<scope >test</scope >
70
70
</dependency >
71
71
79
79
<dependency >
80
80
<groupId >io.javalin</groupId >
81
81
<artifactId >javalin</artifactId >
82
- <version >4.6.0 </version >
82
+ <version >4.6.1 </version >
83
83
<scope >test</scope >
84
84
</dependency >
85
85
Original file line number Diff line number Diff line change 22
22
<dependency >
23
23
<groupId >io.avaje</groupId >
24
24
<artifactId >avaje-lang</artifactId >
25
- <version >1.0 </version >
25
+ <version >1.1 </version >
26
26
</dependency >
27
27
28
28
<dependency >
29
29
<groupId >org.mockito</groupId >
30
30
<artifactId >mockito-core</artifactId >
31
- <version >4.6.0 </version >
31
+ <version >4.6.1 </version >
32
32
<optional >true</optional >
33
33
</dependency >
34
34
Original file line number Diff line number Diff line change 26
26
* Specify the priority ordering when multiple aspects are on a method.
27
27
* <p>
28
28
* When multiple aspects are on a method they are nested. The highest
29
- * {@link # ordering()} value will be the outer-most aspect, the lowest
30
- * ordering will be the inner-most aspect.
29
+ * ordering value will be the outer-most aspect, the lowest ordering will
30
+ * be the inner-most aspect.
31
31
* <p>
32
32
* The outer-most aspect will have it's <em>before</em> executed first,
33
33
* followed by the <em>before</em> of the inner nested aspects ultimately
Original file line number Diff line number Diff line change 1
1
package io .avaje .inject .spi ;
2
2
3
+ import java .lang .annotation .ElementType ;
4
+ import java .lang .annotation .Retention ;
5
+ import java .lang .annotation .RetentionPolicy ;
6
+ import java .lang .annotation .Target ;
7
+
3
8
/**
4
- * Hold bean dependency meta data intended for internal use by code generation (Java annotation processing).
9
+ * Hold bean dependency metadata intended for internal use by code generation (Java annotation processing).
5
10
*/
11
+ @ Target (ElementType .METHOD )
12
+ @ Retention (RetentionPolicy .CLASS )
6
13
public @interface DependencyMeta {
7
14
8
15
/**
Original file line number Diff line number Diff line change 9
9
* Marks source code that has been generated.
10
10
*/
11
11
@ Target (ElementType .TYPE )
12
- @ Retention (RetentionPolicy .RUNTIME )
12
+ @ Retention (RetentionPolicy .CLASS )
13
13
public @interface Generated {
14
14
15
15
/**
You can’t perform that action at this time.
0 commit comments