-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpom.xml
More file actions
60 lines (57 loc) · 1.85 KB
/
Copy pathpom.xml
File metadata and controls
60 lines (57 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>info.piwai.cleanandroidcode</groupId>
<artifactId>cleanandroidcode-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>cleanandroidcode</artifactId>
<packaging>apk</packaging>
<name>cleanandroidcode - Application</name>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>support-v4</artifactId>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>otto</artifactId>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>dagger</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.androidannotations</groupId>
<artifactId>androidannotations-api</artifactId>
</dependency>
<!-- The order of the following 3 dependencies is important: cleanandroidcode-processor
first, then androidannotations, then dagger. It impacts the processing order. -->
<dependency>
<groupId>info.piwai.cleanandroidcode</groupId>
<artifactId>cleanandroidcode-processor</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.androidannotations</groupId>
<artifactId>androidannotations</artifactId>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>dagger-compiler</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>