1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 3 Copyright (C) 2014 Google, Inc. 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 <project 18 xmlns="http://maven.apache.org/POM/4.0.0" 19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 21 <modelVersion>4.0.0</modelVersion> 22 <parent> 23 <groupId>com.google.dagger</groupId> 24 <artifactId>dagger-parent</artifactId> 25 <version>2.1-SNAPSHOT</version> 26 </parent> 27 <groupId>dagger.tests</groupId> 28 <artifactId>functional-tests</artifactId> 29 <name>Functional Tests</name> 30 <dependencies> 31 <dependency> 32 <groupId>com.google.guava</groupId> 33 <artifactId>guava</artifactId> 34 </dependency> 35 <dependency> 36 <groupId>com.google.dagger</groupId> 37 <artifactId>dagger</artifactId> 38 <version>${project.version}</version> 39 </dependency> 40 <dependency> 41 <groupId>com.google.dagger</groupId> 42 <artifactId>dagger-compiler</artifactId> 43 <version>${project.version}</version> 44 <optional>true</optional> 45 </dependency> 46 <dependency> 47 <groupId>javax.inject</groupId> 48 <artifactId>javax.inject-tck</artifactId> 49 </dependency> 50 <dependency> 51 <!-- For map-bindings --> 52 <groupId>com.google.auto.value</groupId> 53 <artifactId>auto-value</artifactId> 54 <version>${auto.value.version}</version> 55 <scope>provided</scope> <!-- to leave out of the all-deps jar --> 56 </dependency> 57 <dependency> 58 <!-- For map-bindings --> 59 <groupId>com.google.auto.factory</groupId> 60 <artifactId>auto-factory</artifactId> 61 <version>${auto.factory.version}</version> 62 <scope>provided</scope> <!-- to leave out of the all-deps jar --> 63 </dependency> 64 65 <dependency> 66 <groupId>junit</groupId> 67 <artifactId>junit</artifactId> 68 <scope>test</scope> 69 </dependency> 70 <dependency> 71 <groupId>com.google.truth</groupId> 72 <artifactId>truth</artifactId> 73 <scope>test</scope> 74 </dependency> 75 </dependencies> 76 <build> 77 <plugins> 78 <plugin> 79 <artifactId>maven-compiler-plugin</artifactId> 80 <version>3.1</version> 81 <configuration> 82 <source>1.7</source> 83 <target>1.7</target> 84 </configuration> 85 </plugin> 86 <plugin> 87 <groupId>org.apache.maven.plugins</groupId> 88 <artifactId>maven-checkstyle-plugin</artifactId> 89 <version>2.10</version> 90 <configuration> 91 <failsOnError>false</failsOnError> 92 <consoleOutput>true</consoleOutput> 93 <configLocation>../../../../checkstyle.xml</configLocation> 94 </configuration> 95 <executions> 96 <execution> 97 <phase>compile</phase> 98 <goals> 99 <goal>checkstyle</goal> 100 </goals> 101 </execution> 102 </executions> 103 </plugin> 104 </plugins> 105 </build> 106 </project> 107