1<?xml version="1.0" encoding="UTF-8"?> 2 3<!-- 4Copyright (c) 2014 Google, Inc. All rights reserved. 5 6This program is licensed to you under the Apache License Version 2.0, 7and you may not use this file except in compliance with the Apache License Version 2.0. 8You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. 9 10Unless required by applicable law or agreed to in writing, 11software distributed under the Apache License Version 2.0 is distributed on an 12"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. 14--> 15 16<project xmlns="http://maven.apache.org/POM/4.0.0" 17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 19 <parent> 20 <artifactId>guice-parent</artifactId> 21 <groupId>com.google.inject</groupId> 22 <version>4.2.0</version> 23 </parent> 24 <modelVersion>4.0.0</modelVersion> 25 26 <artifactId>jdk8-tests</artifactId> 27 28 <name>Google Guice - JDK8 Tests</name> 29 30 <dependencies> 31 <dependency> 32 <groupId>com.google.inject</groupId> 33 <artifactId>guice</artifactId> 34 <version>${project.version}</version> 35 <scope>test</scope> 36 </dependency> 37 <dependency> 38 <groupId>com.google.inject.extensions</groupId> 39 <artifactId>guice-assistedinject</artifactId> 40 <version>${project.version}</version> 41 <scope>test</scope> 42 </dependency> 43 <dependency> 44 <groupId>cglib</groupId> 45 <artifactId>cglib</artifactId> 46 <scope>test</scope> 47 </dependency> 48 <dependency> 49 <groupId>com.google.guava</groupId> 50 <artifactId>guava-testlib</artifactId> 51 <scope>test</scope> 52 </dependency> 53 </dependencies> 54 55 <build> 56 <plugins> 57 <plugin> 58 <artifactId>maven-compiler-plugin</artifactId> 59 <configuration> 60 <source>8</source> 61 <target>8</target> 62 </configuration> 63 </plugin> 64 <plugin> 65 <artifactId>maven-jar-plugin</artifactId> 66 <!-- 67 Override guice-parent's maven-jar-plugin settings to use the default instead. 68 Since there are no non-test sources for this module and we aren't generating 69 a manifest file for it, there's no MANIFEST.MF file where the parent configuration 70 is expecting it. 71 --> 72 <configuration combine.self="override" /> 73 </plugin> 74 </plugins> 75 </build> 76 77</project> 78