Skip to content

Commit 4172d36

Browse files
SuperMarioYLclaude
andcommitted
fix(release): add name/description to all module POMs for Maven Central
Central Portal rejects deployments whose POMs lack <name>/<description> (these are not inherited from the parent). Adds both to core/client/server, the examples aggregator, and the three example modules. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent fba1466 commit 4172d36

7 files changed

Lines changed: 21 additions & 0 deletions

File tree

trouve-client/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
<artifactId>trouve-client</artifactId>
1515

16+
<name>Trouve Client</name>
17+
<description>Trouve client: annotation-driven service registration and API exposure for Spring Boot.</description>
18+
1619
<properties>
1720
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1821
</properties>

trouve-core/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
<artifactId>trouve-core</artifactId>
1616

17+
<name>Trouve Core</name>
18+
<description>Trouve shared core: data models, utilities, exceptions and events.</description>
19+
1720

1821
<properties>
1922
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

trouve-examples/client-example/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
<artifactId>client-example</artifactId>
1515

16+
<name>Trouve Client Example</name>
17+
<description>Trouve runnable client example.</description>
18+
1619

1720
<properties>
1821
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

trouve-examples/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<modelVersion>4.0.0</modelVersion>
1414
<artifactId>trouve-examples</artifactId>
15+
16+
<name>Trouve Examples</name>
17+
<description>Trouve runnable examples (aggregator).</description>
1518
<packaging>pom</packaging>
1619
<modules>
1720
<module>client-example</module>

trouve-examples/server-nonsingleton-example/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
<artifactId>server-nonsingleton-example</artifactId>
1515

16+
<name>Trouve Server Cluster Example</name>
17+
<description>Trouve runnable cluster-mode (Redis) server example.</description>
18+
1619

1720
<properties>
1821
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

trouve-examples/server-singleton-example/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
<artifactId>server-singleton-example</artifactId>
1515

16+
<name>Trouve Server Singleton Example</name>
17+
<description>Trouve runnable singleton-mode server example.</description>
18+
1619

1720
<properties>
1821
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

trouve-server/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
<artifactId>trouve-server</artifactId>
1515

16+
<name>Trouve Server</name>
17+
<description>Trouve server: service discovery, routing, load balancing and request forwarding.</description>
18+
1619

1720
<properties>
1821
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)