|
1 | 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"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <parent> |
4 | 5 | <artifactId>java11-oss</artifactId> |
5 | 6 | <groupId>org.avaje</groupId> |
|
49 | 50 | </dependency> |
50 | 51 |
|
51 | 52 | <dependency> |
52 | | - <groupId>io.dinject</groupId> |
53 | | - <artifactId>dinject</artifactId> |
54 | | - <version>2.3</version> |
| 53 | + <groupId>io.avaje</groupId> |
| 54 | + <artifactId>avaje-inject</artifactId> |
| 55 | + <version>3.0</version> |
55 | 56 | <scope>test</scope> |
56 | 57 | </dependency> |
57 | 58 |
|
58 | 59 | <dependency> |
59 | | - <groupId>io.dinject</groupId> |
60 | | - <artifactId>dinject-controller</artifactId> |
61 | | - <version>1.21</version> |
| 60 | + <groupId>io.avaje</groupId> |
| 61 | + <artifactId>avaje-http-api</artifactId> |
| 62 | + <version>1.0</version> |
62 | 63 | <scope>test</scope> |
63 | 64 | </dependency> |
64 | 65 |
|
65 | 66 | <dependency> |
66 | | - <groupId>io.dinject</groupId> |
67 | | - <artifactId>controller-validator-hibernate</artifactId> |
68 | | - <version>1.1</version> |
| 67 | + <groupId>io.avaje</groupId> |
| 68 | + <artifactId>avaje-http-hibernate-validator</artifactId> |
| 69 | + <version>1.0</version> |
69 | 70 | <scope>test</scope> |
70 | 71 | </dependency> |
71 | 72 |
|
|
79 | 80 | <!-- test annotation processors --> |
80 | 81 |
|
81 | 82 | <dependency> |
82 | | - <groupId>io.dinject</groupId> |
83 | | - <artifactId>dinject-generator</artifactId> |
84 | | - <version>2.3</version> |
85 | | - <scope>test</scope> |
86 | | - </dependency> |
87 | | - |
88 | | - <dependency> |
89 | | - <groupId>io.dinject</groupId> |
90 | | - <artifactId>javalin-generator</artifactId> |
91 | | - <version>1.21</version> |
| 83 | + <groupId>io.avaje</groupId> |
| 84 | + <artifactId>avaje-inject-generator</artifactId> |
| 85 | + <version>3.0</version> |
92 | 86 | <scope>test</scope> |
93 | 87 | </dependency> |
94 | 88 |
|
95 | 89 | </dependencies> |
96 | 90 |
|
| 91 | + <build> |
| 92 | + <plugins> |
| 93 | + <plugin> |
| 94 | + <artifactId>maven-surefire-plugin</artifactId> |
| 95 | + <version>3.0.0-M4</version> |
| 96 | + <configuration> |
| 97 | + <argLine> |
| 98 | + --add-modules com.fasterxml.jackson.databind |
| 99 | + --add-opens io.avaje.http.client/io.avaje.http.client=ALL-UNNAMED |
| 100 | + --add-opens io.avaje.http.client/org.example.webserver=ALL-UNNAMED |
| 101 | + --add-opens io.avaje.http.client/org.example.webserver=com.fasterxml.jackson.databind |
| 102 | + --add-opens io.avaje.http.client/org.example.github=com.fasterxml.jackson.databind |
| 103 | + </argLine> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + |
| 107 | + </plugins> |
| 108 | + </build> |
97 | 109 | </project> |
0 commit comments