Skip to content

Commit 35fdcc0

Browse files
authored
Merge pull request #611 from SentryMan/events-module-info
Remove `InjectSPI` from events
2 parents 36ee1f6 + 904bfb1 commit 35fdcc0

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

blackbox-aspect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>avaje-inject-parent</artifactId>
77
<groupId>io.avaje</groupId>
8-
<version>10.0-RC6</version>
8+
<version>10.0-RC7</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blackbox-other/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>avaje-inject-parent</artifactId>
88
<groupId>io.avaje</groupId>
9-
<version>10.0-RC6</version>
9+
<version>10.0-RC7</version>
1010
</parent>
1111

1212
<artifactId>blackbox-other</artifactId>
@@ -18,7 +18,7 @@
1818
<version>${project.version}</version>
1919
<scope>provided</scope>
2020
</dependency>
21-
21+
2222
<dependency>
2323
<groupId>io.avaje</groupId>
2424
<artifactId>avaje-inject-events</artifactId>

blackbox-test-inject/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>avaje-inject-parent</artifactId>
77
<groupId>io.avaje</groupId>
8-
<version>10.0-RC6</version>
8+
<version>10.0-RC7</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -91,7 +91,7 @@
9191
<plugin>
9292
<groupId>io.avaje</groupId>
9393
<artifactId>avaje-inject-maven-plugin</artifactId>
94-
<version>10.0-RC6</version>
94+
<version>10.0-RC7</version>
9595
<executions>
9696
<execution>
9797
<phase>process-sources</phase>

inject-aop/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.avaje</groupId>
77
<artifactId>avaje-inject-parent</artifactId>
8-
<version>10.0-RC6</version>
8+
<version>10.0-RC7</version>
99
</parent>
1010
<artifactId>avaje-inject-aop</artifactId>
1111
<dependencies>

inject-events/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.avaje</groupId>
55
<artifactId>avaje-inject-parent</artifactId>
6-
<version>10.0-RC6</version>
6+
<version>10.0-RC7</version>
77
</parent>
88
<artifactId>avaje-inject-events</artifactId>
99
<name>avaje inject events</name>
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>io.avaje</groupId>
1414
<artifactId>avaje-inject</artifactId>
15-
<version>10.0-RC5</version>
15+
<version>10.0-RC6</version>
1616
<scope>provided</scope>
1717
</dependency>
1818
<dependency>
@@ -29,4 +29,4 @@
2929
<scope>test</scope>
3030
</dependency>
3131
</dependencies>
32-
</project>
32+
</project>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
requires transitive io.avaje.inject;
66
requires static io.avaje.spi;
7-
provides io.avaje.inject.spi.InjectSPI with io.avaje.inject.events.spi.ObserverManagerPlugin;
7+
provides io.avaje.inject.spi.InjectExtension with io.avaje.inject.events.spi.ObserverManagerPlugin;
88
}

inject-generator/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>avaje-inject-parent</artifactId>
9-
<version>10.0-RC6</version>
9+
<version>10.0-RC7</version>
1010
</parent>
1111

1212
<artifactId>avaje-inject-generator</artifactId>
@@ -22,7 +22,7 @@
2222
<artifactId>avaje-inject</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>
25-
25+
2626
<dependency>
2727
<groupId>io.avaje</groupId>
2828
<artifactId>avaje-spi-service</artifactId>
@@ -36,7 +36,7 @@
3636
<optional>true</optional>
3737
<scope>provided</scope>
3838
</dependency>
39-
39+
4040
<!-- test dependencies -->
4141
<dependency>
4242
<groupId>io.avaje</groupId>

inject-gradle-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ plugins {
66
}
77

88
group 'io.avaje.inject'
9-
version '10.0-RC6'
9+
version '10.0-RC7'
1010

1111
repositories {
1212
mavenLocal()
1313
mavenCentral()
1414
}
1515

1616
dependencies {
17-
implementation 'io.avaje:avaje-inject:10.0-RC6'
17+
implementation 'io.avaje:avaje-inject:10.0-RC7'
1818
implementation gradleApi()
1919

2020
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'

inject-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<groupId>io.avaje</groupId>
1111
<artifactId>avaje-inject-maven-plugin</artifactId>
1212
<packaging>maven-plugin</packaging>
13-
<version>10.0-RC6</version>
13+
<version>10.0-RC7</version>
1414

1515
<dependencies>
1616
<dependency>

inject-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.avaje</groupId>
66
<artifactId>avaje-inject-parent</artifactId>
7-
<version>10.0-RC6</version>
7+
<version>10.0-RC7</version>
88
</parent>
99

1010
<artifactId>avaje-inject-test</artifactId>

0 commit comments

Comments
 (0)