Home | History | Annotate | Download | only in 0.6.0
      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.uber</groupId>
      6   <artifactId>rave-compiler</artifactId>
      7   <version>0.6.0</version>
      8   <name>RAVE Compiler</name>
      9   <description>A data model validation framework that uses java annotation processing</description>
     10   <url>https://github.com/uber-common/rave/</url>
     11   <licenses>
     12     <license>
     13       <name>MIT License</name>
     14       <url>http://opensource.org/licenses/MIT</url>
     15       <distribution>repo</distribution>
     16     </license>
     17   </licenses>
     18   <developers>
     19     <developer>
     20       <id>behroozkhorashadi</id>
     21       <name>Behrooz Khorashadi</name>
     22     </developer>
     23   </developers>
     24   <scm>
     25     <connection>scm:git:git://github.com/uber-common/rave.git</connection>
     26     <developerConnection>scm:git:ssh://git (a] github.com/uber-common/rave.git</developerConnection>
     27     <url>https://github.com/uber-common/rave/</url>
     28   </scm>
     29   <dependencies>
     30     <dependency>
     31       <groupId>com.google.testing.compile</groupId>
     32       <artifactId>compile-testing</artifactId>
     33       <version>0.5</version>
     34       <scope>test</scope>
     35     </dependency>
     36     <dependency>
     37       <groupId>com.google.android</groupId>
     38       <artifactId>android</artifactId>
     39       <version>4.1.1.4</version>
     40       <scope>test</scope>
     41     </dependency>
     42     <dependency>
     43       <groupId>com.google.auto</groupId>
     44       <artifactId>auto-common</artifactId>
     45       <version>0.4</version>
     46       <scope>compile</scope>
     47     </dependency>
     48     <dependency>
     49       <groupId>com.uber</groupId>
     50       <artifactId>rave</artifactId>
     51       <version>0.6.0</version>
     52       <scope>compile</scope>
     53     </dependency>
     54     <dependency>
     55       <groupId>com.google.guava</groupId>
     56       <artifactId>guava</artifactId>
     57       <version>19.0-rc2</version>
     58       <scope>compile</scope>
     59     </dependency>
     60     <dependency>
     61       <groupId>com.squareup</groupId>
     62       <artifactId>javapoet</artifactId>
     63       <version>1.2.0</version>
     64       <scope>compile</scope>
     65     </dependency>
     66     <dependency>
     67       <groupId>com.uber</groupId>
     68       <artifactId>rave-test</artifactId>
     69       <version>0.6.0</version>
     70       <scope>test</scope>
     71     </dependency>
     72     <dependency>
     73       <groupId>org.mockito</groupId>
     74       <artifactId>mockito-core</artifactId>
     75       <version>1.10.19</version>
     76       <scope>test</scope>
     77     </dependency>
     78     <dependency>
     79       <groupId>com.google.auto.service</groupId>
     80       <artifactId>auto-service</artifactId>
     81       <version>1.0-rc2</version>
     82       <scope>provided</scope>
     83     </dependency>
     84     <dependency>
     85       <groupId>org.assertj</groupId>
     86       <artifactId>assertj-core</artifactId>
     87       <version>1.7.1</version>
     88       <scope>test</scope>
     89     </dependency>
     90     <dependency>
     91       <groupId>org.slf4j</groupId>
     92       <artifactId>slf4j-api</artifactId>
     93       <version>1.7.6</version>
     94       <scope>test</scope>
     95     </dependency>
     96     <dependency>
     97       <groupId>com.android.support</groupId>
     98       <artifactId>support-annotations</artifactId>
     99       <version>23.3.0</version>
    100       <scope>compile</scope>
    101     </dependency>
    102   </dependencies>
    103 </project>
    104