diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 12:56:27 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | 4d884aac75b99f92c201b14fd4b4879a0fabc597 (patch) | |
tree | e77e696f6bfba2d3eafc71bb97f1c88884be1944 | |
parent | cbe376dab2172f70c0b3650297e416c8a89d04a8 (diff) | |
download | aspectj-4d884aac75b99f92c201b14fd4b4879a0fabc597.tar.gz aspectj-4d884aac75b99f92c201b14fd4b4879a0fabc597.zip |
Add local Maven site to 'distributionManagement'
If we ever decide to add Maven site docs to the AspectJ website, now we
can deploy them locally using 'mvn site:deploy' and publish them on a
web server or even incorporate them into the binary distribution in the
installer's belly.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
-rw-r--r-- | pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -45,6 +45,11 @@ <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> + <site> + <id>aspectj-site-local</id> + <!-- Use mvn site:deploy from root directory to create multi-module Maven site there --> + <url>file://${user.dir}/aj-build/dist/site</url> + </site> </distributionManagement> <repositories> |