Skip to content

Commit cfbc431

Browse files
committed
2024.5.1
1 parent 952424a commit cfbc431

File tree

1 file changed

+121
-7
lines changed

1 file changed

+121
-7
lines changed

pom.xml

Lines changed: 121 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,61 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.nasdanika</groupId>
6-
<version>2024.5.0</version>
6+
<version>2024.5.1</version>
77
<artifactId>cli-launcher</artifactId>
88
<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>
1025

1126
<dependencies>
1227
<dependency>
1328
<groupId>org.nasdanika.html</groupId>
1429
<artifactId>app-model-gen-cli</artifactId>
15-
<version>2024.5.0</version>
30+
<version>2024.5.1</version>
1631
</dependency>
1732
<dependency>
1833
<groupId>org.nasdanika.models.java</groupId>
1934
<artifactId>cli</artifactId>
20-
<version>2024.5.0</version>
35+
<version>2024.5.1</version>
2136
</dependency>
2237
<dependency>
2338
<groupId>org.nasdanika.models.rules</groupId>
2439
<artifactId>cli</artifactId>
25-
<version>2024.5.0</version>
40+
<version>2024.5.1</version>
2641
</dependency>
2742
<dependency>
2843
<groupId>org.nasdanika.core</groupId>
2944
<artifactId>http</artifactId>
30-
<version>2024.5.0</version>
45+
<version>2024.5.1</version>
3146
</dependency>
3247
<dependency>
3348
<groupId>org.nasdanika.models.echarts</groupId>
34-
<version>2024.5.0</version>
49+
<version>2024.5.1</version>
3550
<artifactId>graph</artifactId>
3651
</dependency>
3752

3853
<!-- To prevent slf4j complaining -->
54+
<!--
3955
<dependency>
4056
<groupId>org.slf4j</groupId>
4157
<artifactId>slf4j-nop</artifactId>
4258
<version>1.7.36</version>
4359
</dependency>
60+
-->
4461
<dependency>
4562
<groupId>org.junit.jupiter</groupId>
4663
<artifactId>junit-jupiter-api</artifactId>
@@ -56,6 +73,14 @@
5673
</dependencies>
5774

5875
<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+
5984
<plugins>
6085
<!-- For building a minimal distribution -->
6186
<plugin>
@@ -100,6 +125,7 @@
100125
<formats>zip</formats>
101126
<appendAssemblyId>false</appendAssemblyId>
102127
<finalName>nsd-cli-${project.version}</finalName>
128+
<attach>false</attach>
103129
<descriptors>
104130
<descriptor>src/assembly/dist.xml</descriptor>
105131
</descriptors>
@@ -123,6 +149,50 @@
123149
<target>17</target>
124150
</configuration>
125151
</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>
126196
</plugins>
127197
</build>
128198

@@ -142,5 +212,49 @@
142212
<timezone>-5</timezone>
143213
</developer>
144214
</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>
145259

146260
</project>

0 commit comments

Comments
 (0)