ARTEMIS-4153 Support 'offline' Maven
This commit is contained in:
parent
ed5f63538e
commit
f154c0b7dd
|
@ -73,3 +73,8 @@ simply run
|
||||||
## Building the docs
|
## 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 ...
|
||||||
|
|
9
pom.xml
9
pom.xml
|
@ -1479,6 +1479,15 @@
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
<build>
|
<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>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
Loading…
Reference in New Issue