Home | History | Annotate | Download | only in jdk8-tests
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3 <!--
      4 Copyright (c) 2014 Google, Inc. All rights reserved.
      5 
      6 This program is licensed to you under the Apache License Version 2.0,
      7 and you may not use this file except in compliance with the Apache License Version 2.0.
      8 You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
      9 
     10 Unless required by applicable law or agreed to in writing,
     11 software 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.
     13 See 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.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>cglib</groupId>
     39       <artifactId>cglib</artifactId>
     40       <scope>test</scope>
     41     </dependency>
     42     <dependency>
     43       <groupId>com.google.guava</groupId>
     44       <artifactId>guava-testlib</artifactId>
     45       <scope>test</scope>
     46     </dependency>
     47   </dependencies>
     48 
     49   <build>
     50     <plugins>
     51       <plugin>
     52         <artifactId>maven-compiler-plugin</artifactId>
     53         <configuration>
     54           <source>8</source>
     55           <target>8</target>
     56         </configuration>
     57       </plugin>
     58       <plugin>
     59         <artifactId>maven-jar-plugin</artifactId>
     60         <!--
     61           Override guice-parent's maven-jar-plugin settings to use the default instead.
     62           Since there are no non-test sources for this module and we aren't generating
     63           a manifest file for it, there's no MANIFEST.MF file where the parent configuration
     64           is expecting it.
     65           -->
     66         <configuration combine.self="override" />
     67       </plugin>
     68     </plugins>
     69   </build>
     70 
     71 </project>
     72