| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| Copyright (c) 2014 Google, Inc. All rights reserved. |
| |
| This program is licensed to you under the Apache License Version 2.0, |
| and you may not use this file except in compliance with the Apache License Version 2.0. |
| You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the Apache License Version 2.0 is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. |
| --> |
| |
| <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/xsd/maven-4.0.0.xsd"> |
| <parent> |
| <artifactId>guice-parent</artifactId> |
| <groupId>com.google.inject</groupId> |
| <version>4.2.0</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>jdk8-tests</artifactId> |
| |
| <name>Google Guice - JDK8 Tests</name> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.google.inject</groupId> |
| <artifactId>guice</artifactId> |
| <version>${project.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.google.inject.extensions</groupId> |
| <artifactId>guice-assistedinject</artifactId> |
| <version>${project.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>cglib</groupId> |
| <artifactId>cglib</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava-testlib</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>8</source> |
| <target>8</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-jar-plugin</artifactId> |
| <!-- |
| Override guice-parent's maven-jar-plugin settings to use the default instead. |
| Since there are no non-test sources for this module and we aren't generating |
| a manifest file for it, there's no MANIFEST.MF file where the parent configuration |
| is expecting it. |
| --> |
| <configuration combine.self="override" /> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |