Changes for page Quick Start

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

From version 78.1
edited by Paul Hoadley
on 2023/12/25 10:19
Change comment: Deleted attachment "settings.xml"
To version 77.2
edited by Paul Hoadley
on 2023/12/25 09:22
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,5 +1,5 @@
1 1  (% class="auto-cursor-target" %)
2 -You should be able to get a "Hello, World!" Wonder application running using [[Maven>>https://maven.apache.org]] in about 10 minutes.
2 +You should be able to get a "Hello, World!" Wonder application running using Maven in about 10 minutes.
3 3  
4 4  (% id="HAssumptions" class="auto-cursor-target" %)
5 5  = Assumptions =
... ... @@ -14,7 +14,7 @@
14 14  = Setup =
15 15  
16 16  (% class="auto-cursor-target" %)
17 -You need to install Maven:
17 +You need to install Maven.
18 18  
19 19  (% class="auto-cursor-target" %)
20 20  {{{$ cd ~/Applications
... ... @@ -23,7 +23,7 @@
23 23  $ ln -s apache-maven-3.9.6 apache-maven
24 24  }}}
25 25  
26 -Add ##bin## to your path in your shell's startup file, say ##~~/.zshrc##:
26 +Add ##bin## to your path in your shell's startup file, say ##~~/.zshrc##.
27 27  
28 28  {{{PATH=$PATH:/Users/paulh/Applications/apache-maven-3.9.6/bin
29 29  }}}
... ... @@ -37,13 +37,13 @@
37 37  }}}
38 38  
39 39  (% class="auto-cursor-target" %)
40 -Finally, add ##~~/.m2/settings.xml##:
40 +Finally, add ~~/.m2/settings.xml:
41 41  
42 42  (% class="auto-cursor-target" %)
43 43  {{{<settings xmlns="http://maven.apache.org/POM/4.0.0"
44 - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
45 - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
46 - http://maven.apache.org/xsd/settings-1.0.0.xsd">
44 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
45 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
46 + http://maven.apache.org/xsd/settings-1.0.0.xsd">
47 47   <profiles>
48 48   <profile>
49 49   <id>wocommunity</id>
settings.xml
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.XWikiGuest
Size
... ... @@ -1,0 +1,1 @@
1 +1.9 KB
Content
... ... @@ -1,0 +1,73 @@
1 +<settings xmlns="http://maven.apache.org/POM/4.0.0"
2 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4 + http://maven.apache.org/xsd/settings-1.0.0.xsd">
5 + <pluginGroups>
6 + <pluginGroup>org.objectstyle.woproject.maven2</pluginGroup>
7 + </pluginGroups>
8 +
9 + <profiles>
10 + <profile>
11 + <id>default</id>
12 + <activation>
13 + <activeByDefault>true</activeByDefault>
14 + </activation>
15 + <repositories>
16 + <repository>
17 + <id>wocommunity.releases</id>
18 + <name>WOCommunity Releases Repository</name>
19 + <url>
20 + http://maven.wocommunity.org/content/groups/public
21 + </url>
22 + <releases>
23 + <enabled>true</enabled>
24 + </releases>
25 + <snapshots>
26 + <enabled>false</enabled>
27 + </snapshots>
28 + </repository>
29 + <repository>
30 + <id>wocommunity.snapshots</id>
31 + <name>WOCommunity Snapshots Repository</name>
32 + <url>
33 + http://maven.wocommunity.org/content/groups/public-snapshots
34 + </url>
35 + <releases>
36 + <enabled>false</enabled>
37 + </releases>
38 + <snapshots>
39 + <enabled>true</enabled>
40 + </snapshots>
41 + </repository>
42 + </repositories>
43 + <pluginRepositories>
44 + <pluginRepository>
45 + <id>wocommunity.releases</id>
46 + <name>WOCommunity Releases Repository</name>
47 + <url>
48 + http://maven.wocommunity.org/content/groups/public
49 + </url>
50 + <releases>
51 + <enabled>true</enabled>
52 + </releases>
53 + <snapshots>
54 + <enabled>false</enabled>
55 + </snapshots>
56 + </pluginRepository>
57 + <pluginRepository>
58 + <id>wocommunity.snapshots</id>
59 + <name>WOCommunity Snapshots Repository</name>
60 + <url>
61 + http://maven.wocommunity.org/content/groups/public-snapshots
62 + </url>
63 + <releases>
64 + <enabled>false</enabled>
65 + </releases>
66 + <snapshots>
67 + <enabled>true</enabled>
68 + </snapshots>
69 + </pluginRepository>
70 + </pluginRepositories>
71 + </profile>
72 + </profiles>
73 +</settings>