Skip to content

Commit 0967668

Browse files
authored
Merge branch 'master' into test-merge-services
2 parents dabdffc + a029f06 commit 0967668

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

inject-generator/pom.xml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,37 @@
2424
<groupId>io.avaje</groupId>
2525
<artifactId>avaje-inject</artifactId>
2626
<version>${project.version}</version>
27+
<exclusions>
28+
<exclusion>
29+
<groupId>io.avaje</groupId>
30+
<artifactId>avaje-inject-events</artifactId>
31+
</exclusion>
32+
<exclusion>
33+
<groupId>io.avaje</groupId>
34+
<artifactId>avaje-inject-aop</artifactId>
35+
</exclusion>
36+
</exclusions>
37+
</dependency>
38+
39+
<dependency>
40+
<groupId>io.avaje</groupId>
41+
<artifactId>avaje-inject-events</artifactId>
42+
<version>${project.version}</version>
43+
<optional>true</optional>
44+
</dependency>
45+
46+
<dependency>
47+
<groupId>io.avaje</groupId>
48+
<artifactId>avaje-inject-aop</artifactId>
49+
<version>${project.version}</version>
50+
<optional>true</optional>
2751
</dependency>
2852

2953
<dependency>
3054
<groupId>io.avaje</groupId>
3155
<artifactId>avaje-prisms</artifactId>
3256
<version>${avaje.prisms.version}</version>
3357
<optional>true</optional>
34-
<scope>provided</scope>
3558
</dependency>
3659

3760
<dependency>
@@ -45,7 +68,6 @@
4568
<artifactId>avaje-http-api</artifactId>
4669
<version>3.2</version>
4770
<optional>true</optional>
48-
<scope>provided</scope>
4971
</dependency>
5072

5173
<!-- test dependencies -->

inject-generator/src/main/java/module-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
requires java.compiler;
77
requires io.avaje.inject;
8-
requires io.avaje.inject.aop;
9-
requires io.avaje.inject.events;
108

9+
requires static io.avaje.inject.aop;
10+
requires static io.avaje.inject.events;
1111
requires static io.avaje.http.api;
1212
requires static io.avaje.prism;
1313
requires static io.avaje.spi;

0 commit comments

Comments
 (0)