Skip to content

Commit 191dbb4

Browse files
committed
2025.7.0
1 parent 92ba38a commit 191dbb4

File tree

10 files changed

+119
-28
lines changed

10 files changed

+119
-28
lines changed

3d-force-graph/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>3d-force-graph</artifactId>

alpinejs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>alpinejs</artifactId>

bootstrap/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>bootstrap</artifactId>

html/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>html</artifactId>

http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>http</artifactId>

http/pom.xml.versionsBackup

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<artifactId>parent</artifactId>
6+
<groupId>org.nasdanika.html</groupId>
7+
<version>2025.6.0</version>
8+
<relativePath>..</relativePath>
9+
</parent>
10+
<artifactId>http</artifactId>
11+
<packaging>jar</packaging>
12+
<name>Nasdanika HTML HTTP</name>
13+
<description>Classes for serving HTML over HTTP</description>
14+
<url>https://docs.nasdanika.org/html/html-graph/index.html</url>
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.jacoco</groupId>
19+
<artifactId>jacoco-maven-plugin</artifactId>
20+
<version>${jacoco.version}</version>
21+
<executions>
22+
<execution>
23+
<id>default-prepare-agent</id>
24+
<goals>
25+
<goal>prepare-agent</goal>
26+
</goals>
27+
</execution>
28+
<execution>
29+
<id>report</id>
30+
<phase>verify</phase>
31+
<goals>
32+
<goal>report</goal>
33+
</goals>
34+
</execution>
35+
</executions>
36+
</plugin>
37+
</plugins>
38+
</build>
39+
<dependencies>
40+
<dependency>
41+
<groupId>${project.groupId}</groupId>
42+
<artifactId>producer</artifactId>
43+
<version>${project.version}</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.nasdanika.core</groupId>
47+
<artifactId>http</artifactId>
48+
<version>${core.version}</version>
49+
</dependency>
50+
</dependencies>
51+
</project>

jstree/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>jstree</artifactId>

pom.xml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.nasdanika.html</groupId>
5-
<version>2025.6.0</version>
5+
<version>2025.7.0</version>
66
<artifactId>parent</artifactId>
77
<packaging>pom</packaging>
88
<name>Nasdanika HTML Parent</name>
@@ -11,7 +11,7 @@
1111
<url>https://docs.nasdanika.org/html/index.html</url>
1212

1313
<properties>
14-
<core.version>2025.6.0</core.version>
14+
<core.version>2025.7.0</core.version>
1515
<jacoco.version>0.8.12</jacoco.version>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
@@ -221,7 +221,7 @@
221221

222222
<profiles>
223223
<profile>
224-
<id>ossrh</id>
224+
<id>central</id>
225225
<build>
226226
<plugins>
227227
<plugin>
@@ -238,29 +238,18 @@
238238
</execution>
239239
</executions>
240240
</plugin>
241-
<plugin>
242-
<groupId>org.sonatype.plugins</groupId>
243-
<artifactId>nexus-staging-maven-plugin</artifactId>
244-
<version>1.7.0</version>
241+
<plugin>
242+
<groupId>org.sonatype.central</groupId>
243+
<artifactId>central-publishing-maven-plugin</artifactId>
244+
<version>0.8.0</version>
245245
<extensions>true</extensions>
246246
<configuration>
247-
<serverId>ossrh</serverId>
248-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
249-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
247+
<publishingServerId>central</publishingServerId>
248+
<autoPublish>true</autoPublish>
250249
</configuration>
251-
</plugin>
250+
</plugin>
252251
</plugins>
253252
</build>
254-
<distributionManagement>
255-
<repository>
256-
<id>ossrh</id>
257-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
258-
</repository>
259-
<snapshotRepository>
260-
<id>ossrh</id>
261-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
262-
</snapshotRepository>
263-
</distributionManagement>
264253
</profile>
265254
</profiles>
266255
</project>

producer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.html</groupId>
7-
<version>2025.6.0</version>
7+
<version>2025.7.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>producer</artifactId>

producer/pom.xml.versionsBackup

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<artifactId>parent</artifactId>
6+
<groupId>org.nasdanika.html</groupId>
7+
<version>2025.6.0</version>
8+
<relativePath>..</relativePath>
9+
</parent>
10+
<artifactId>producer</artifactId>
11+
<packaging>jar</packaging>
12+
<name>Nasdanika HTML Producers</name>
13+
<description>Requirement and core producers factory for HTML generation</description>
14+
<url>https://docs.nasdanika.org/html/html-graph/index.html</url>
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.jacoco</groupId>
19+
<artifactId>jacoco-maven-plugin</artifactId>
20+
<version>${jacoco.version}</version>
21+
<executions>
22+
<execution>
23+
<id>default-prepare-agent</id>
24+
<goals>
25+
<goal>prepare-agent</goal>
26+
</goals>
27+
</execution>
28+
<execution>
29+
<id>report</id>
30+
<phase>verify</phase>
31+
<goals>
32+
<goal>report</goal>
33+
</goals>
34+
</execution>
35+
</executions>
36+
</plugin>
37+
</plugins>
38+
</build>
39+
<dependencies>
40+
<dependency>
41+
<groupId>${project.groupId}</groupId>
42+
<artifactId>html</artifactId>
43+
<version>${project.version}</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.nasdanika.core</groupId>
47+
<artifactId>exec</artifactId>
48+
<version>${core.version}</version>
49+
</dependency>
50+
</dependencies>
51+
</project>

0 commit comments

Comments
 (0)