1
1
<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" >
2
2
<modelVersion >4.0.0</modelVersion >
3
-
3
+
4
4
<groupId >com.github.timeu.gwt-libs.dygraphs-gwt</groupId >
5
5
<artifactId >dygraphs-gwt-parent</artifactId >
6
6
<version >1.0.0-SNAPSHOT</version >
7
7
<packaging >pom</packaging >
8
-
9
8
<name >Dygraphs-GWT (Parent)</name >
10
9
<description >GWT wrapper for Dygraphs</description >
11
10
<url >https://github.com/timeu/dygraphs-gwt</url >
12
- <organization >
13
- <name >GMI</name >
14
- <url >http://www.gmi.oeaw.ac.at</url >
15
- </organization >
16
-
17
- <modules >
18
- <module >dygraphs-gwt</module >
19
- <module >dygraphs-gwt-sample</module >
20
- </modules >
21
-
22
-
23
11
24
12
<properties >
25
13
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
26
- <gwt .version>2.8.0-SNAPSHOT </gwt .version>
14
+ <gwt .version>2.8.2 </gwt .version>
27
15
<gwt .module>sample.DygraphsGWTSample</gwt .module>
28
16
<gwt .shortName>dygraphsgwtsample</gwt .shortName>
29
17
<github .global.server>github</github .global.server>
30
18
<github .maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github .maven.repository>
31
19
</properties >
32
20
33
- <licenses >
34
- <license >
35
- <name >The MIT License (MIT)</name >
36
- <url >http://opensource.org/licenses/MIT</url >
37
- <distribution >repo</distribution >
38
- </license >
39
- </licenses >
21
+ <inceptionYear >2011</inceptionYear >
22
+ <licenses >
23
+ <license >
24
+ <name >MIT License</name >
25
+ <url >http://opensource.org/licenses/MIT</url >
26
+ <distribution >repo</distribution >
27
+ </license >
28
+ </licenses >
29
+
30
+ <prerequisites >
31
+ <maven >3.0.5</maven >
32
+ </prerequisites >
33
+
34
+ <organization >
35
+ <name >GMI</name >
36
+ <url >http://www.gmi.oeaw.ac.at</url >
37
+ </organization >
38
+
39
+
40
+ <distributionManagement >
41
+ <repository >
42
+ <id >ossrh</id >
43
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
44
+ </repository >
45
+ <snapshotRepository >
46
+ <id >ossrh</id >
47
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
48
+ </snapshotRepository >
49
+ </distributionManagement >
40
50
41
51
<scm >
42
52
<connection >scm:git:https://timeu@github.com/timeu/dygraphs-gwt.git</connection >
43
- <developerConnection >scm:git:https://timeu@github.com/timeu/dygraphs-gwt.git</developerConnection >
44
53
<url >https://timeu@github.com/timeu/dygraphs-gwt</url >
54
+ <developerConnection >scm:git:ssh://git@github.com/timeu/dygraphs-gwt</developerConnection >
45
55
</scm >
46
56
47
57
<developers >
88
98
<plugin >
89
99
<groupId >org.apache.maven.plugins</groupId >
90
100
<artifactId >maven-compiler-plugin</artifactId >
91
- <version >3.1</version >
101
+ <version >3.8. 1</version >
92
102
<configuration >
93
103
<source >1.8</source >
94
104
<target >1.8</target >
95
105
</configuration >
96
106
</plugin >
97
107
<plugin >
98
- <groupId >org.apache.maven.plugins</groupId >
99
- <artifactId >maven-gpg-plugin</artifactId >
100
- <executions >
101
- <execution >
102
- <id >sign-artifacts</id >
103
- <phase >verify</phase >
104
- <goals >
105
- <goal >sign</goal >
106
- </goals >
107
- </execution >
108
- </executions >
108
+ <groupId >org.apache.maven.plugins</groupId >
109
+ <artifactId >maven-release-plugin</artifactId >
110
+ <version >3.0.0-M1</version >
111
+ <configuration >
112
+ <autoVersionSubmodules >true</autoVersionSubmodules >
113
+ <tagNameFormat >v@{project.version}</tagNameFormat >
114
+ </configuration >
109
115
</plugin >
110
- <plugin >
116
+ <plugin >
117
+ <groupId >org.apache.maven.plugins</groupId >
118
+ <artifactId >maven-site-plugin</artifactId >
119
+ <version >3.7.1</version >
120
+ </plugin >
121
+ <plugin >
122
+ <groupId >org.sonatype.plugins</groupId >
123
+ <artifactId >nexus-staging-maven-plugin</artifactId >
124
+ <version >1.6.8</version >
125
+ <extensions >true</extensions >
126
+ <configuration >
127
+ <serverId >ossrh</serverId >
128
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
129
+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
130
+ </configuration >
131
+ </plugin >
132
+ <plugin >
133
+ <groupId >org.apache.maven.plugins</groupId >
134
+ <artifactId >maven-gpg-plugin</artifactId >
135
+ <version >1.6</version >
136
+ <executions >
137
+ <execution >
138
+ <id >sign-artifacts</id >
139
+ <phase >verify</phase >
140
+ <goals >
141
+ <goal >sign</goal >
142
+ </goals >
143
+ </execution >
144
+ </executions >
145
+ </plugin >
146
+ <plugin >
111
147
<groupId >net.ltgt.gwt.maven</groupId >
112
148
<artifactId >gwt-maven-plugin</artifactId >
113
- <version >1.0-rc-6 </version >
149
+ <version >1.0.0 </version >
114
150
<extensions >true</extensions >
115
151
<configuration >
116
152
<startupUrls >
138
174
</plugin >
139
175
</plugins >
140
176
</pluginManagement >
177
+ <plugins >
178
+ <plugin >
179
+ <groupId >org.apache.maven.plugins</groupId >
180
+ <artifactId >maven-gpg-plugin</artifactId >
181
+ </plugin >
182
+ <plugin >
183
+ <groupId >org.sonatype.plugins</groupId >
184
+ <artifactId >nexus-staging-maven-plugin</artifactId >
185
+ </plugin >
186
+ </plugins >
141
187
</build >
142
- <distributionManagement >
143
- <repository >
144
- <id >repo</id >
145
- <url >${github.maven.repository} /releases/</url >
146
- </repository >
147
- <snapshotRepository >
148
- <id >snapshot-repo</id >
149
- <url >${github.maven.repository} /snapshots/</url >
150
- </snapshotRepository >
151
- </distributionManagement >
152
- <repositories >
153
- <repository >
154
- <id >google-snapshots</id >
155
- <url >https://oss.sonatype.org/content/repositories/google-snapshots/</url >
156
- <releases >
157
- <enabled >false</enabled >
158
- </releases >
159
- <snapshots >
160
- <enabled >true</enabled >
161
- </snapshots >
162
- </repository >
163
- </repositories >
164
- </project >
188
+
189
+
190
+
191
+ <modules >
192
+ <module >dygraphs-gwt</module >
193
+ <module >dygraphs-gwt-sample</module >
194
+ </modules >
195
+ </project >
0 commit comments