1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+
6
+ <groupId >de.sematre.dsbmobile</groupId >
7
+ <artifactId >DSBmobile-API</artifactId >
8
+ <version >1.2</version >
9
+
10
+ <name >DSBmobile-API</name >
11
+ <description >Unofficial DSBmobile API for Java.</description >
12
+ <url >https://github.com/Sematre/DSBmobile-API</url >
13
+
14
+ <licenses >
15
+ <license >
16
+ <name >MIT License</name >
17
+ <url >https://opensource.org/licenses/MIT</url >
18
+ </license >
19
+ </licenses >
20
+
21
+ <scm >
22
+ <connection >scm:git:git://github.com/sematre/dsbmobile-api.git</connection >
23
+ <developerConnection >scm:git:ssh://github.com:sematre/dsbmobile-api.git</developerConnection >
24
+ <url >https://github.com/sematre/dsbmobile-api</url >
25
+ <tag >HEAD</tag >
26
+ </scm >
27
+
28
+ <issueManagement >
29
+ <system >GitHub</system >
30
+ <url >https://github.com/Sematre/DSBmobile-API/issues</url >
31
+ </issueManagement >
32
+
33
+ <properties >
34
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
35
+ <maven .compiler.source>1.7</maven .compiler.source>
36
+ <maven .compiler.target>1.7</maven .compiler.target>
37
+ </properties >
38
+
39
+ <distributionManagement >
40
+ <snapshotRepository >
41
+ <id >ossrh</id >
42
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
43
+ </snapshotRepository >
44
+ <repository >
45
+ <id >ossrh</id >
46
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
47
+ </repository >
48
+ </distributionManagement >
49
+
50
+ <build >
51
+ <plugins >
52
+ <plugin >
53
+ <groupId >org.apache.maven.plugins</groupId >
54
+ <artifactId >maven-compiler-plugin</artifactId >
55
+ <version >3.8.0</version >
56
+ <configuration >
57
+ <source >1.7</source >
58
+ <target >1.7</target >
59
+ </configuration >
60
+ </plugin >
61
+ </plugins >
62
+ </build >
63
+
64
+ <profiles >
65
+ <profile >
66
+ <id >release</id >
67
+ <build >
68
+ <plugins >
69
+ <plugin >
70
+ <groupId >org.apache.maven.plugins</groupId >
71
+ <artifactId >maven-source-plugin</artifactId >
72
+ <version >2.2.1</version >
73
+ <executions >
74
+ <execution >
75
+ <id >attach-sources</id >
76
+ <goals >
77
+ <goal >jar-no-fork</goal >
78
+ </goals >
79
+ </execution >
80
+ </executions >
81
+ </plugin >
82
+ <plugin >
83
+ <groupId >org.apache.maven.plugins</groupId >
84
+ <artifactId >maven-javadoc-plugin</artifactId >
85
+ <version >2.9.1</version >
86
+ <executions >
87
+ <execution >
88
+ <id >attach-javadocs</id >
89
+ <goals >
90
+ <goal >jar</goal >
91
+ </goals >
92
+ </execution >
93
+ </executions >
94
+ </plugin >
95
+ <plugin >
96
+ <groupId >org.apache.maven.plugins</groupId >
97
+ <artifactId >maven-gpg-plugin</artifactId >
98
+ <version >1.5</version >
99
+ <executions >
100
+ <execution >
101
+ <id >sign-artifacts</id >
102
+ <phase >verify</phase >
103
+ <goals >
104
+ <goal >sign</goal >
105
+ </goals >
106
+ <configuration >
107
+ <keyname >${gpg.keyname} </keyname >
108
+ </configuration >
109
+ </execution >
110
+ </executions >
111
+ </plugin >
112
+ <plugin >
113
+ <groupId >org.sonatype.plugins</groupId >
114
+ <artifactId >nexus-staging-maven-plugin</artifactId >
115
+ <version >1.6.7</version >
116
+ <extensions >true</extensions >
117
+ <configuration >
118
+ <serverId >ossrh</serverId >
119
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
120
+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
121
+ </configuration >
122
+ </plugin >
123
+ </plugins >
124
+ </build >
125
+ </profile >
126
+ </profiles >
127
+
128
+ <dependencies >
129
+ <dependency >
130
+ <groupId >com.google.code.gson</groupId >
131
+ <artifactId >gson</artifactId >
132
+ <version >2.8.5</version >
133
+ </dependency >
134
+ </dependencies >
135
+
136
+ <developers >
137
+ <developer >
138
+ <name >Sematre</name >
139
+ <email >Sematre@gmx.de</email >
140
+ <organization >Sematre</organization >
141
+ <organizationUrl >https://sematre.de</organizationUrl >
142
+ </developer >
143
+ </developers >
144
+
145
+ <organization >
146
+ <name >Sematre</name >
147
+ <url >https://sematre.de</url >
148
+ </organization >
149
+ </project >
0 commit comments