ARTEMIS-4153 Support 'offline' Maven

This commit is contained in:
Justin Bertram 2023-01-31 15:19:38 -06:00
parent ed5f63538e
commit f154c0b7dd
2 changed files with 15 additions and 1 deletions

View File

@ -72,4 +72,9 @@ simply run
## Building the docs
From either `docs/hacking-guide/en` or `docs/user-manual/en` run `gitbook build` (after you've installed gitbook)
From either `docs/hacking-guide/en` or `docs/user-manual/en` run `gitbook build` (after you've installed gitbook)
## Building offline
$ mvn dependency:go-offline
$ mvn -o ...

View File

@ -1479,6 +1479,15 @@
</profiles>
<build>
<extensions>
<!-- Generate os.detected.classifier property for Netty native dependencies -->
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.7.1</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>