|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright (C) 2013 Google, Inc. |
| 4 | + Copyright (C) 2013 Square, Inc. |
| 5 | +
|
| 6 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +--> |
| 18 | +<project |
| 19 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + <groupId>com.example.dagger.tests</groupId> |
| 24 | + <artifactId>multiple-qualifiers</artifactId> |
| 25 | + <version>HEAD-SNAPSHOT</version> |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>@dagger.groupId@</groupId> |
| 29 | + <artifactId>dagger</artifactId> |
| 30 | + <version>@dagger.version@</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>@dagger.groupId@</groupId> |
| 34 | + <artifactId>dagger-compiler</artifactId> |
| 35 | + <version>@dagger.version@</version> |
| 36 | + <optional>true</optional> |
| 37 | + </dependency> |
| 38 | + </dependencies> |
| 39 | + <build> |
| 40 | + <plugins> |
| 41 | + <plugin> |
| 42 | + <artifactId>maven-compiler-plugin</artifactId> |
| 43 | + <version>3.1</version> |
| 44 | + <configuration> |
| 45 | + <source>1.5</source> |
| 46 | + <target>1.5</target> |
| 47 | + </configuration> |
| 48 | + </plugin> |
| 49 | + </plugins> |
| 50 | + </build> |
| 51 | +</project> |
0 commit comments