1 <project xmlns="http://maven.apache.org/POM/4.0.0" 2 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"> 4 <modelVersion>4.0.0</modelVersion> 5 <parent> 6 <groupId>com.google.inject.extensions</groupId> 7 <artifactId>extensions-parent</artifactId> 8 <version>4.2.0</version> 9 </parent> 10 <artifactId>guice-dagger-adapter</artifactId> 11 <name>Google Guice - Extensions - Dagger Adapter</name> 12 <dependencies> 13 <dependency> 14 <groupId>com.google.dagger</groupId> 15 <artifactId>dagger</artifactId> 16 <version>2.4</version> 17 </dependency> 18 </dependencies> 19 <build> 20 <plugins> 21 <plugin> 22 <artifactId>maven-jar-plugin</artifactId> 23 <configuration> 24 <archive> 25 <manifestEntries> 26 <Automatic-Module-Name>com.google.guice.extensions.daggeradapter</Automatic-Module-Name> 27 </manifestEntries> 28 </archive> 29 </configuration> 30 </plugin> 31 </plugins> 32 </build> 33 </project> 34