-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
133 lines (126 loc) · 4.29 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
<?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>
<inceptionYear>2013</inceptionYear>
<properties>
<!-- platform or api level (api level 16 = platform 4.1) -->
<android-platform>16</android-platform>
<android-maven-plugin-version>3.6.1</android-maven-plugin-version>
<!-- Available Android versions: 1.5_r3, 1.5_r4, 1.6_r2, 2.1.2, 2.1_r1,
2.2.1, 2.3.1, 2.3.3, 4.0.1.2, 4.1.1.4 -->
<com.google.android-version>4.1.1.4</com.google.android-version>
</properties>
<!-- general project information -->
<groupId>de.hshannover.f4.trust</groupId>
<artifactId>ironcontrol-for-android</artifactId>
<version>1.0.2</version>
<packaging>apk</packaging>
<name>ironcontrol for android</name>
<url>http://trust.f4.hs-hannover.de</url>
<description>
Ironcontrol is an IF-MAP client on a Android Smartphone device. It designed as a tool for administrative tasks in an IF-MAP environment. It allows the user to send requests such as publish, search and subscriptions to a MAP server and save these requests and also merge several requests into one via certain operations.
</description>
<organization>
<name>Trust@HsH</name>
<url>http://trust.f4.hs-hannover.de</url>
</organization>
<!-- the project license -->
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>manual</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<!-- the core developers of the project -->
<developers>
<developer>
<name>Trust@HsH</name>
<email>[email protected]</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Anton Saenko</name>
</contributor>
<contributor>
<name>Arne Loth</name>
</contributor>
<contributor>
<name>Daniel Wolf</name>
</contributor>
<contributor>
<name>Marcel Reichenbach</name>
</contributor>
</contributors>
<build>
<finalName>${project.artifactId}</finalName>
<sourceDirectory>src</sourceDirectory>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<licenseName>apache_v2</licenseName>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<canUpdateDescription>true</canUpdateDescription>
<canUpdateCopyright>true</canUpdateCopyright>
<descriptionTemplate>${basedir}/src/license/description_template.ftl</descriptionTemplate>
<roots>
<root>src/main/java</root>
<root>src/license/dummy</root>
</roots>
</configuration>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android-maven-plugin-version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<configuration>
<sdk>
<platform>${android-platform}</platform>
</sdk>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
<configuration>
<propertyExpansion>headerfile=${project.basedir}/src/license/dummy/Dummy.java</propertyExpansion>
<configLocation>https://raw.githubusercontent.com/trustathsh/ironcommon/master/src/main/documents/trustAtHsHCheckstylePolicy.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>support-v4</artifactId>
<version>r7</version>
</dependency>
<dependency>
<groupId>de.hshannover.f4.trust</groupId>
<artifactId>ifmapj</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
</project>