You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.5 KiB
73 lines
2.5 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>androidx.databinding</groupId>
|
|
<artifactId>databinding-compiler</artifactId>
|
|
<version>3.4.0-beta02</version>
|
|
<name>Data Binding Annotation Processor</name>
|
|
<description>The annotation processor for Data Binding. Generates binding classes for runtime.</description>
|
|
<url>https://developer.android.com/studio</url>
|
|
<inceptionYear>2007</inceptionYear>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<name>The Android Open Source Project</name>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>git://android.googlesource.com/platform/tools/base.git</connection>
|
|
<url>https://android.googlesource.com/platform/tools/base</url>
|
|
</scm>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>androidx.databinding</groupId>
|
|
<artifactId>databinding-compiler-common</artifactId>
|
|
<version>3.4.0-beta02</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>androidx.databinding</groupId>
|
|
<artifactId>databinding-common</artifactId>
|
|
<version>3.4.0-beta02</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
<version>1.3.11</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.4</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.10</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4</artifactId>
|
|
<version>4.5.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.juniversalchardet</groupId>
|
|
<artifactId>juniversalchardet</artifactId>
|
|
<version>1.0.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|