3
3
xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >org.nasdanika</groupId >
6
- <version >2024.5.0 </version >
6
+ <version >2024.5.1 </version >
7
7
<artifactId >cli-launcher</artifactId >
8
8
<packaging >jar</packaging >
9
- <name >Nasdanika command line interface launcher</name >
9
+ <name >Nasdanika CLI launcher</name >
10
+ <description >Launcher of Nasdanika Command Line Interface. Builds a distribution.</description >
11
+
12
+ <licenses >
13
+ <license >
14
+ <name >Eclipse Public License 2.0</name >
15
+ <url >https://www.nasdanika.org/builds/master/eclipse-public-license-2.0.html</url >
16
+ <distribution >repo</distribution >
17
+ </license >
18
+ </licenses >
19
+
20
+ <scm >
21
+ <url >https://github.com/Nasdanika/cli</url >
22
+ </scm >
23
+
24
+ <url >https://github.com/Nasdanika/cli</url >
10
25
11
26
<dependencies >
12
27
<dependency >
13
28
<groupId >org.nasdanika.html</groupId >
14
29
<artifactId >app-model-gen-cli</artifactId >
15
- <version >2024.5.0 </version >
30
+ <version >2024.5.1 </version >
16
31
</dependency >
17
32
<dependency >
18
33
<groupId >org.nasdanika.models.java</groupId >
19
34
<artifactId >cli</artifactId >
20
- <version >2024.5.0 </version >
35
+ <version >2024.5.1 </version >
21
36
</dependency >
22
37
<dependency >
23
38
<groupId >org.nasdanika.models.rules</groupId >
24
39
<artifactId >cli</artifactId >
25
- <version >2024.5.0 </version >
40
+ <version >2024.5.1 </version >
26
41
</dependency >
27
42
<dependency >
28
43
<groupId >org.nasdanika.core</groupId >
29
44
<artifactId >http</artifactId >
30
- <version >2024.5.0 </version >
45
+ <version >2024.5.1 </version >
31
46
</dependency >
32
47
<dependency >
33
48
<groupId >org.nasdanika.models.echarts</groupId >
34
- <version >2024.5.0 </version >
49
+ <version >2024.5.1 </version >
35
50
<artifactId >graph</artifactId >
36
51
</dependency >
37
52
38
53
<!-- To prevent slf4j complaining -->
54
+ <!--
39
55
<dependency>
40
56
<groupId>org.slf4j</groupId>
41
57
<artifactId>slf4j-nop</artifactId>
42
58
<version>1.7.36</version>
43
59
</dependency>
60
+ -->
44
61
<dependency >
45
62
<groupId >org.junit.jupiter</groupId >
46
63
<artifactId >junit-jupiter-api</artifactId >
56
73
</dependencies >
57
74
58
75
<build >
76
+ <extensions >
77
+ <extension >
78
+ <groupId >org.apache.maven.wagon</groupId >
79
+ <artifactId >wagon-ssh</artifactId >
80
+ <version >3.5.3</version >
81
+ </extension >
82
+ </extensions >
83
+
59
84
<plugins >
60
85
<!-- For building a minimal distribution -->
61
86
<plugin >
100
125
<formats >zip</formats >
101
126
<appendAssemblyId >false</appendAssemblyId >
102
127
<finalName >nsd-cli-${project.version} </finalName >
128
+ <attach >false</attach >
103
129
<descriptors >
104
130
<descriptor >src/assembly/dist.xml</descriptor >
105
131
</descriptors >
123
149
<target >17</target >
124
150
</configuration >
125
151
</plugin >
152
+ <plugin >
153
+ <groupId >org.apache.maven.plugins</groupId >
154
+ <artifactId >maven-source-plugin</artifactId >
155
+ <version >3.3.0</version >
156
+ <executions >
157
+ <execution >
158
+ <id >attach-sources</id >
159
+ <goals >
160
+ <goal >jar-no-fork</goal >
161
+ </goals >
162
+ </execution >
163
+ </executions >
164
+ </plugin >
165
+ <plugin >
166
+ <groupId >org.apache.maven.plugins</groupId >
167
+ <artifactId >maven-javadoc-plugin</artifactId >
168
+ <version >3.6.3</version >
169
+ <executions >
170
+ <execution >
171
+ <id >attach-javadocs</id >
172
+ <goals >
173
+ <goal >jar</goal >
174
+ </goals >
175
+ <configuration >
176
+ <failOnError >false</failOnError >
177
+ <additionalOptions >-Xdoclint:none</additionalOptions >
178
+ <linksource >true</linksource >
179
+ <additionalOptions ><![CDATA[ --allow-script-in-comments]]> </additionalOptions >
180
+ <header >
181
+ <![CDATA[
182
+ <script async src="https://www.googletagmanager.com/gtag/js?id=G-9BRJVLK8CC"></script>
183
+ <script>
184
+ window.dataLayer = window.dataLayer || [];
185
+ function gtag(){dataLayer.push(arguments);}
186
+ gtag('js', new Date());
187
+
188
+ gtag('config', 'G-9BRJVLK8CC');
189
+ </script>
190
+ ]]>
191
+ </header >
192
+ </configuration >
193
+ </execution >
194
+ </executions >
195
+ </plugin >
126
196
</plugins >
127
197
</build >
128
198
142
212
<timezone >-5</timezone >
143
213
</developer >
144
214
</developers >
215
+ <profiles >
216
+ <profile >
217
+ <id >ossrh</id >
218
+ <build >
219
+ <plugins >
220
+ <plugin >
221
+ <groupId >org.apache.maven.plugins</groupId >
222
+ <artifactId >maven-gpg-plugin</artifactId >
223
+ <version >3.1.0</version >
224
+ <executions >
225
+ <execution >
226
+ <id >sign-artifacts</id >
227
+ <phase >verify</phase >
228
+ <goals >
229
+ <goal >sign</goal >
230
+ </goals >
231
+ </execution >
232
+ </executions >
233
+ </plugin >
234
+ <plugin >
235
+ <groupId >org.sonatype.plugins</groupId >
236
+ <artifactId >nexus-staging-maven-plugin</artifactId >
237
+ <version >1.6.13</version >
238
+ <extensions >true</extensions >
239
+ <configuration >
240
+ <serverId >ossrh</serverId >
241
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
242
+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
243
+ </configuration >
244
+ </plugin >
245
+ </plugins >
246
+ </build >
247
+ <distributionManagement >
248
+ <repository >
249
+ <id >ossrh</id >
250
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2</url >
251
+ </repository >
252
+ <snapshotRepository >
253
+ <id >ossrh</id >
254
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
255
+ </snapshotRepository >
256
+ </distributionManagement >
257
+ </profile >
258
+ </profiles >
145
259
146
260
</project >
0 commit comments