Changes for page Quick Start

Last modified by Paul Hoadley on 2025/01/30 02:09

From version 68.1
edited by Lachlan Deck
on 2016/01/13 15:21
Change comment: Migrated to Confluence 5.3
To version 67.1
edited by Lachlan Deck
on 2016/01/13 15:21
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -32,19 +32,19 @@
32 32  
33 33  (a) You can use MacPorts ([[https:~~/~~/www.macports.org>>url:https://www.macports.org||shape="rect"]]) to install:
34 34  
35 -{{code theme="Emacs" language="bash" title="MacPorts usage"}}
35 +{{code title="MacPorts usage" theme="Emacs" language="bash"}}
36 36  $ sudo port install maven3
37 37  {{/code}}
38 38  
39 39  (b) Or similarly via Homebrew ([[http:~~/~~/brew.sh>>url:http://brew.sh||shape="rect"]]):
40 40  
41 -{{code theme="Emacs" language="bash" title="Homebrew usage"}}
41 +{{code title="Homebrew usage" theme="Emacs" language="bash"}}
42 42  $ brew install maven
43 43  {{/code}}
44 44  
45 45  (c) Or manually by downloading the binary tarball, copying it to /usr/local/, unpacking it, soft linking it and adding the path to your bash_profile:
46 46  
47 -{{code theme="Emacs" language="bash" title="Manual install"}}
47 +{{code title="Manual install" theme="Emacs" language="bash"}}
48 48  $ sudo su
49 49  $ cd /usr/local/
50 50  $ curl -O http://mirror.tcpdiag.net/apache/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz
... ... @@ -57,7 +57,7 @@
57 57  
58 58  Then in your bash profile, ensure your path and java home are updated:
59 59  
60 -{{code theme="Emacs" language="text" title="~~/.bash_profile" linenumbers="true"}}
60 +{{code title="~~/.bash_profile" theme="Emacs" linenumbers="true" language="text"}}
61 61  ...
62 62  export PATH=/usr/local/apache-maven/bin:$PATH
63 63  export JAVA_HOME=$(/usr/libexec/java_home)