1<?xml version="1.0" encoding="UTF-8"?> 2<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 4 <modelVersion>4.0.0</modelVersion> 5 <groupId>com.android.databinding</groupId> 6 <artifactId>adapters</artifactId> 7 <version>1.1</version> 8 <packaging>aar</packaging> 9 <licenses> 10 <license> 11 <name>The Apache Software License, Version 2.0</name> 12 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 13 <distribution>repo</distribution> 14 </license> 15 </licenses> 16 <dependencies> 17 <dependency> 18 <groupId>com.android.databinding</groupId> 19 <artifactId>library</artifactId> 20 <version>1.1</version> 21 <scope>compile</scope> 22 </dependency> 23 <dependency> 24 <groupId>com.android.databinding</groupId> 25 <artifactId>baseLibrary</artifactId> 26 <version>1.1</version> 27 <scope>compile</scope> 28 </dependency> 29 </dependencies> 30</project> 31