Skip to content

Commit f251212

Browse files
authored
[MSHADE-447] Do not use forked guice, use sisu from parent (#188)
Use proper Guice, same as Maven. Drop sisu plugin, is defined in parent. --- https://issues.apache.org/jira/browse/MSHADE-447
1 parent 2e7f87a commit f251212

File tree

1 file changed

+5
-20
lines changed

1 file changed

+5
-20
lines changed

pom.xml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,9 @@
101101
<version>${sisu.version}</version>
102102
</dependency>
103103
<dependency>
104-
<groupId>org.sonatype.sisu</groupId>
105-
<artifactId>sisu-guice</artifactId>
106-
<version>3.2.6</version>
107-
<classifier>no_aop</classifier>
104+
<groupId>com.google.inject</groupId>
105+
<artifactId>guice</artifactId>
106+
<version>5.1.0</version>
108107
</dependency>
109108
</dependencies>
110109
</dependencyManagement>
@@ -207,9 +206,8 @@
207206
<scope>test</scope>
208207
</dependency>
209208
<dependency>
210-
<groupId>org.sonatype.sisu</groupId>
211-
<artifactId>sisu-guice</artifactId>
212-
<classifier>no_aop</classifier>
209+
<groupId>com.google.inject</groupId>
210+
<artifactId>guice</artifactId>
213211
<scope>test</scope>
214212
</dependency>
215213
<dependency>
@@ -299,19 +297,6 @@
299297
</execution>
300298
</executions>
301299
</plugin>
302-
<plugin>
303-
<groupId>org.eclipse.sisu</groupId>
304-
<artifactId>sisu-maven-plugin</artifactId>
305-
<version>${sisu.version}</version>
306-
<executions>
307-
<execution>
308-
<goals>
309-
<goal>main-index</goal>
310-
<goal>test-index</goal>
311-
</goals>
312-
</execution>
313-
</executions>
314-
</plugin>
315300
</plugins>
316301
</pluginManagement>
317302

0 commit comments

Comments
 (0)