Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions aggregator/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.demchaav</groupId>
<artifactId>graphcompose-build</artifactId>
<version>1.6.4</version>
<packaging>pom</packaging>

<name>GraphCompose Build Aggregator</name>
<description>
Non-published reactor aggregator. Builds the library plus the examples
and benchmarks modules in one pass and gives a single entry point for
`versions:set`, so a version bump propagates to every module at once.
This is NOT a Maven parent and is NOT published to JitPack: the library
root pom.xml stays standalone so consumer coordinates never change.

Usage:
mvn -f aggregator/pom.xml -DskipTests install # build everything
mvn -f aggregator/pom.xml versions:set -DnewVersion=X # bump all modules
</description>

<modules>
<module>..</module>
<module>../examples</module>
<module>../benchmarks</module>
</modules>
</project>
11 changes: 8 additions & 3 deletions benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.demchaav</groupId>
<parent>
<groupId>io.github.demchaav</groupId>
<artifactId>graphcompose-build</artifactId>
<version>1.6.4</version>
<relativePath>../aggregator/pom.xml</relativePath>
</parent>

<artifactId>graphcompose-benchmarks</artifactId>
<version>1.6.4</version>
<name>GraphCompose Benchmarks</name>
<description>
Performance benchmarks, stress tests, and endurance harnesses for
Expand All @@ -16,7 +21,7 @@
</description>

<properties>
<graphcompose.version>1.6.4</graphcompose.version>
<graphcompose.version>${project.version}</graphcompose.version>
<maven.compiler.release>17</maven.compiler.release>

<junit.bom.version>6.1.0</junit.bom.version>
Expand Down
9 changes: 7 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.demchaav</groupId>
<parent>
<groupId>io.github.demchaav</groupId>
<artifactId>graphcompose-build</artifactId>
<version>1.6.4</version>
<relativePath>../aggregator/pom.xml</relativePath>
</parent>

<artifactId>graphcompose-examples</artifactId>
<version>1.6.4</version>

<name>GraphCompose Examples</name>
<description>Runnable file-render examples for GraphCompose templates.</description>
Expand Down