File tree Expand file tree Collapse file tree 7 files changed +16
-7
lines changed
io/avaje/http/api/javalin
io/avaje/http/generator/javalin
tests/test-javalin-jsonb/src/main/java/org/example/myapp/web/test Expand file tree Collapse file tree 7 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1
- package io .avaje .http .javalin ;
1
+ package io .avaje .http .api . javalin ;
2
2
3
3
import static java .lang .annotation .ElementType .METHOD ;
4
4
import static java .lang .annotation .RetentionPolicy .SOURCE ;
Original file line number Diff line number Diff line change 1
- package io .avaje .http .javalin ;
1
+ package io .avaje .http .api . javalin ;
2
2
3
3
import static java .lang .annotation .ElementType .METHOD ;
4
4
import static java .lang .annotation .RetentionPolicy .SOURCE ;
Original file line number Diff line number Diff line change 1
1
module io .avaje .http .api {
2
2
3
3
exports io .avaje .http .api ;
4
+ exports io .avaje .http .api .javalin ;
4
5
exports io .avaje .http .api .context ;
5
6
exports io .avaje .http .api .spi ;
6
7
}
Original file line number Diff line number Diff line change 23
23
<version >${avaje.prisms.version} </version >
24
24
<scope >provided</scope >
25
25
</dependency >
26
+ <dependency >
27
+ <groupId >io.avaje</groupId >
28
+ <artifactId >avaje-http-api</artifactId >
29
+ <version >${project.version} </version >
30
+ <optional >true</optional >
31
+ <scope >provided</scope >
32
+ </dependency >
26
33
27
34
</dependencies >
28
35
Original file line number Diff line number Diff line change 2
2
3
3
import java .io .IOException ;
4
4
5
+ import io .avaje .http .api .javalin .After ;
6
+ import io .avaje .http .api .javalin .Before ;
5
7
import io .avaje .http .generator .core .BaseProcessor ;
6
8
import io .avaje .http .generator .core .ControllerReader ;
7
9
import io .avaje .http .generator .core .PlatformAdapter ;
8
10
import io .avaje .http .generator .core .ProcessingContext ;
9
- import io .avaje .http .javalin .After ;
10
- import io .avaje .http .javalin .Before ;
11
11
import io .avaje .prism .GeneratePrism ;
12
12
13
13
@ GeneratePrism (value = After .class , superClass = AbstractCustomMethodPrism .class )
Original file line number Diff line number Diff line change 6
6
requires java .sql ;
7
7
8
8
// SHADED: All content after this line will be removed at package time
9
- requires transitive io .avaje .http .generator .core ;
9
+ requires io .avaje .http .generator .core ;
10
+ requires io .avaje .http .api ;
10
11
requires static io .avaje .prism ;
11
12
}
Original file line number Diff line number Diff line change 8
8
import org .example .myapp .web .ServerType ;
9
9
10
10
import io .avaje .http .api .*;
11
- import io .avaje .http .javalin .After ;
12
- import io .avaje .http .javalin .Before ;
11
+ import io .avaje .http .api . javalin .After ;
12
+ import io .avaje .http .api . javalin .Before ;
13
13
import io .javalin .http .Context ;
14
14
15
15
@ Path ("test/" )
You can’t perform that action at this time.
0 commit comments