dynamic plugin versions with docs

This commit is contained in:
2026-02-09 16:45:39 -05:00
parent 29d0ef1398
commit bd4ddd12f7
67 changed files with 332 additions and 82 deletions
+7
View File
@@ -55,3 +55,10 @@ This tile will result in the definition of the following Maven properties during
| `beedk.jar.notest.classpath` | Text | `initialize` | Java command line classpath text of all `compile` and `runtime` JAR dependencies on the project |
| `beedk.amp.test.classpath` | Text | `initialize` | Java command line classpath text of all `compile`, `runtime`, or `test` AMP dependencies on the project |
| `beedk.jar.test.classpath` | Text | `initialize` | Java command line classpath text of all `compile`, `runtime`, or `test` JAR dependencies on the project |
### Plugin Versions
| Maven Property |
| ---------------------------------- |
| `maven-dependency-plugin.version` |
| `regex-plugin.version` |
+4 -3
View File
@@ -23,7 +23,7 @@
<!-- This plugin serializes the compile/runtime AMP and JAR dependencies into a classpath string -->
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>${maven-dependency.version}</version>
<version>${maven-dependency-plugin.version}</version>
<executions>
<execution>
<id>generate-amp-notest-classpath</id>
@@ -71,7 +71,7 @@
<plugin>
<groupId>com.inteligr8</groupId>
<artifactId>regex-maven-plugin</artifactId>
<version>1.0.5</version>
<version>${regex-plugin.version}</version>
<executions>
<execution>
<id>string-2-boolean-1</id>
@@ -140,7 +140,8 @@
</activation>
<properties>
<!-- versions -->
<maven-dependency.version>3.8.1</maven-dependency.version>
<maven-dependency-plugin.version>3.9.0</maven-dependency-plugin.version>
<regex-plugin.version>1.0.7</regex-plugin.version>
</properties>
</profile>
</profiles>