forked from takimafr/androidkickstartr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
136 lines (130 loc) · 4.24 KB
/
pom.xml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?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/xsd/maven-4.0.0.xsd"
>
<modelVersion>4.0.0</modelVersion>
<groupId>com.athomas.androidkickstartr</groupId>
<artifactId>androidkickstartr-parent</artifactId>
<packaging>pom</packaging>
<version>0.9</version>
<name>Android-Initializr</name>
<url>http://androidkickstartr.com</url>
<inceptionYear>2011</inceptionYear>
<modules>
<module>androidkickstartr-core</module>
<module>androidkickstartr-ws</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<freemarker.version>2.3.19</freemarker.version>
<codemodel.version>2.6</codemodel.version>
<slf4j.version>1.7.0</slf4j.version>
<support-v4.version>r7</support-v4.version>
<commons-io.version>2.4</commons-io.version>
<commons-compress.version>1.4.1</commons-compress.version>
<jersey.version>1.4</jersey.version>
<logback.version>1.0.0</logback.version>
<junit.version>4.10</junit.version>
<maven-invoker.version>2.0.11</maven-invoker.version>
<httpcomponents.version>4.2.2</httpcomponents.version>
<jgit.version>2.2.0.201212191850-r</jgit.version>
<egit.version>2.1.3</egit.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.athomas.androidkickstartr</groupId>
<artifactId>androidkickstartr-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarker.version}</version>
</dependency>
<dependency>
<groupId>com.sun.codemodel</groupId>
<artifactId>codemodel</artifactId>
<version>${codemodel.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${commons-compress.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>${maven-invoker.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.mylyn.github</groupId>
<artifactId>org.eclipse.egit.github.core</artifactId>
<version>${egit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<!-- Checks for license headers. Use "mvn license:format" to update files. -->
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/etc/header.txt</header>
<excludes>
<exclude>LICENSE.txt</exclude>
<exclude>README.md</exclude>
<exclude>.gitignore</exclude>
<exclude>**/Github.properties</exclude>
<exclude>**/resources/**</exclude>
</excludes>
<strictCheck>true</strictCheck>
</configuration>
</plugin>
</plugins>
</build>
</project>