File tree Expand file tree Collapse file tree 8 files changed +60
-11
lines changed
resources/META-INF/services
resources/META-INF/services Expand file tree Collapse file tree 8 files changed +60
-11
lines changed Original file line number Diff line number Diff line change 1818 <dependencies >
1919 <dependency >
2020 <groupId >io.avaje</groupId >
21- <artifactId >avaje-inject</artifactId >
22- <version >9.0</version >
23- <scope >provided</scope >
24- <optional >true</optional >
21+ <artifactId >avaje-http-inject-plugin</artifactId >
22+ <version >${project.version} </version >
2523 </dependency >
2624 </dependencies >
2725
Original file line number Diff line number Diff line change 22
33 exports io .avaje .http .api ;
44 exports io .avaje .http .api .context ;
5- exports io .avaje .http .api .spi ;
6- requires static io .avaje .inject ;
7-
8- provides io .avaje .inject .spi .Plugin with io .avaje .http .api .spi .DefaultResolverProvider ;
9-
105}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <parent >
5+ <groupId >io.avaje</groupId >
6+ <artifactId >avaje-http-parent</artifactId >
7+ <version >1.38-SNAPSHOT</version >
8+ <relativePath >..</relativePath >
9+ </parent >
10+
11+ <artifactId >avaje-http-inject-plugin</artifactId >
12+
13+ <scm >
14+ <developerConnection >scm:git:git@github.com:avaje/avaje-http.git</developerConnection >
15+ <tag >avaje-http-parent-1.19</tag >
16+ </scm >
17+
18+ <dependencies >
19+ <dependency >
20+ <groupId >io.avaje</groupId >
21+ <artifactId >avaje-inject</artifactId >
22+ <version >9.0</version >
23+ <scope >provided</scope >
24+ <optional >true</optional >
25+ </dependency >
26+ <dependency >
27+ <groupId >io.avaje</groupId >
28+ <artifactId >avaje-http-api</artifactId >
29+ <version >1.37</version >
30+ <optional >true</optional >
31+ <scope >provided</scope >
32+ </dependency >
33+ </dependencies >
34+
35+ <build >
36+ <plugins >
37+ <plugin >
38+ <groupId >org.apache.maven.plugins</groupId >
39+ <artifactId >maven-surefire-plugin</artifactId >
40+ <version >3.0.0</version >
41+ <configuration >
42+ <forkCount >0</forkCount >
43+ </configuration >
44+ </plugin >
45+ </plugins >
46+ </build >
47+ </project >
Original file line number Diff line number Diff line change 1- package io .avaje .http .api . spi ;
1+ package io .avaje .http .inject ;
22
33import io .avaje .http .api .context .RequestContextResolver ;
44import io .avaje .http .api .context .ThreadLocalRequestContextResolver ;
Original file line number Diff line number Diff line change 1+ module io .avaje .http .plugin {
2+
3+ requires io .avaje .http .api ;
4+ requires io .avaje .inject ;
5+
6+ provides io .avaje .inject .spi .Plugin with io .avaje .http .inject .DefaultResolverProvider ;
7+
8+ }
Original file line number Diff line number Diff line change 1+ io.avaje.http.inject.DefaultResolverProvider
Original file line number Diff line number Diff line change 3838 <module >http-api</module >
3939 <module >http-client</module >
4040 <module >http-client-gson-adapter</module >
41+ <module >http-inject-plugin</module >
4142 <module >http-generator-core</module >
4243 <module >http-generator-javalin</module >
4344 <module >http-generator-jex</module >
You can’t perform that action at this time.
0 commit comments