Skip to content

Remove InjectSPI from events #611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blackbox-aspect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>avaje-inject-parent</artifactId>
<groupId>io.avaje</groupId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions blackbox-other/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>avaje-inject-parent</artifactId>
<groupId>io.avaje</groupId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>

<artifactId>blackbox-other</artifactId>
Expand All @@ -18,7 +18,7 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-events</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions blackbox-test-inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>avaje-inject-parent</artifactId>
<groupId>io.avaje</groupId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -91,7 +91,7 @@
<plugin>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-maven-plugin</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
<executions>
<execution>
<phase>process-sources</phase>
Expand Down
2 changes: 1 addition & 1 deletion inject-aop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-parent</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>
<artifactId>avaje-inject-aop</artifactId>
<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions inject-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-parent</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>
<artifactId>avaje-inject-events</artifactId>
<name>avaje inject events</name>
Expand All @@ -12,7 +12,7 @@
<dependency>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject</artifactId>
<version>10.0-RC5</version>
<version>10.0-RC6</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -29,4 +29,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
2 changes: 1 addition & 1 deletion inject-events/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

requires transitive io.avaje.inject;
requires static io.avaje.spi;
provides io.avaje.inject.spi.InjectSPI with io.avaje.inject.events.spi.ObserverManagerPlugin;
provides io.avaje.inject.spi.InjectExtension with io.avaje.inject.events.spi.ObserverManagerPlugin;
}
6 changes: 3 additions & 3 deletions inject-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-parent</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>

<artifactId>avaje-inject-generator</artifactId>
Expand All @@ -22,7 +22,7 @@
<artifactId>avaje-inject</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.avaje</groupId>
<artifactId>avaje-spi-service</artifactId>
Expand All @@ -36,7 +36,7 @@
<optional>true</optional>
<scope>provided</scope>
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>io.avaje</groupId>
Expand Down
4 changes: 2 additions & 2 deletions inject-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ plugins {
}

group 'io.avaje.inject'
version '10.0-RC6'
version '10.0-RC7'

repositories {
mavenLocal()
mavenCentral()
}

dependencies {
implementation 'io.avaje:avaje-inject:10.0-RC6'
implementation 'io.avaje:avaje-inject:10.0-RC7'
implementation gradleApi()

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
Expand Down
2 changes: 1 addition & 1 deletion inject-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>10.0-RC6</version>
<version>10.0-RC7</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion inject-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-parent</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>

<artifactId>avaje-inject-test</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-parent</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
</parent>

<artifactId>avaje-inject</artifactId>
Expand All @@ -23,7 +23,7 @@
<artifactId>avaje-inject-aop</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.avaje</groupId>
<artifactId>avaje-lang</artifactId>
Expand Down Expand Up @@ -56,7 +56,7 @@
<version>5.12.0</version>
<optional>true</optional>
</dependency>

<dependency>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-events</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.avaje</groupId>
<artifactId>avaje-inject-parent</artifactId>
<version>10.0-RC6</version>
<version>10.0-RC7</version>
<packaging>pom</packaging>
<name>avaje inject parent</name>
<description>parent pom for avaje inject library</description>
Expand Down
Loading