1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.google.inject</groupId>
<artifactId>guice-parent</artifactId>
<version>5.1.0</version>
</parent>
<packaging>pom</packaging>
<groupId>com.google.inject.extensions</groupId>
<artifactId>extensions-parent</artifactId>
<name>Google Guice - Extensions</name>
<modules>
<module>assistedinject</module>
<module>dagger-adapter</module>
<module>grapher</module>
<module>jmx</module>
<module>jndi</module>
<module>persist</module>
<module>servlet</module>
<module>spring</module>
<module>struts2</module>
<module>testlib</module>
<module>throwingproviders</module>
<!--
| not yet promoted...
- -
<module>mini</module>
<module>service</module>
-->
</modules>
<dependencies>
<!--
| All extensions depend on the core
-->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${project.version}</version>
</dependency>
<!--
| Some extension tests depend on the core tests
-->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<!--
| Some extension tests depend on guava test libs which are not inherited
| from test scope.
-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<scope>test</scope>
</dependency>
<!--
| Some tests depend indirectly on asm (via LineNumbers) which is only embedded
| with 'mvn package'; make it an explict dependency to support using 'mvn test'.
-->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!--
| Add standard LICENSE and NOTICE files
-->
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
</plugin>
<!--
| Enable Java6 conformance checks
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
</plugin>
<!--
| Add OSGi manifest: extensions are fragments that attach to the core
-->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Fragment-Host>com.google.inject</Fragment-Host>
</instructions>
</configuration>
</plugin>
<!--
| Generate sources jar
-->
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!--
| Generate javadoc jar
-->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
|