Skip to content

Commit a61cc75

Browse files
author
Howard Lewis Ship
committed
TAP5-530: Documentation should identify how to boot-strap the quickstart archetype from the Tapestry360 Maven repository (not snapshot repository)
git-svn-id: https://svn.apache.org/repos/asf/tapestry/tapestry5/trunk@746081 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8c2ed7e commit a61cc75

15 files changed

Lines changed: 25 additions & 18 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.apache.tapestry</groupId>
55
<artifactId>tapestry-project</artifactId>
66
<packaging>pom</packaging>
7-
<version>5.1.0.0</version>
7+
<version>5.1.0.1-SNAPSHOT</version>
88
<name>Tapestry 5 Project</name>
99
<description>Master project for the modules of Tapestry 5.</description>
1010
<inceptionYear>2006</inceptionYear>

quickstart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.tapestry</groupId>
1616
<artifactId>tapestry-project</artifactId>
17-
<version>5.1.0.0</version>
17+
<version>5.1.0.1-SNAPSHOT</version>
1818
</parent>
1919
<name>Tapestry 5 Quickstart Archetype</name>
2020
<inceptionYear>2007</inceptionYear>

quickstart/src/main/resources/archetype-resources/pom.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,14 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
9494
</reporting>
9595

9696
<repositories>
97-
<!-- This can be commented out when the tapestry-release-version is a not a snapshot.
98-
The non-snapshot Tapestry artifacts are distributed through the central
99-
repository at ibiblio. -->
10097

98+
<!-- This repository is only needed if the Tapestry released artifacts haven't made it to the central Maven repository yet. -->
99+
<repository>
100+
<id>tapestry</id>
101+
<url>http://tapestry.formos.com/maven-repository/</url>
102+
</repository>
103+
104+
<!-- This repository is only needed when the tapestry-release-version is a snapshot release. -->
101105
<repository>
102106
<id>tapestry-snapshots</id>
103107
<url>http://tapestry.formos.com/maven-snapshot-repository/</url>
@@ -127,6 +131,6 @@ of a Tapestry Maven plugin is not required. -->
127131
</pluginRepositories>
128132

129133
<properties>
130-
<tapestry-release-version>5.1.0.0</tapestry-release-version>
134+
<tapestry-release-version>5.1.0.1-SNAPSHOT</tapestry-release-version>
131135
</properties>
132136
</project>

quickstart/src/site/apt/index.apt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ Quickstart Archetype
1616

1717
From the command line, you execute the following command:
1818

19-
<<<mvn archetype:generate -DarchetypeCatalog=http://tapestry.formos.com/maven-snapshot-repository>>>
19+
<<<mvn archetype:generate -DarchetypeCatalog=http://tapestry.formos.com/maven-repository>>>
20+
21+
Note: use the URL http://tapestry.formos.com/maven-snapshot-repository if you want to access a snapshot version of the archetype, rather
22+
than the most recent released version.
2023

2124
Maven uses the archetypeCatalog to get a list of available archetypes; in this case, the only option is the Tapestry Quickstart.
2225
It will then ask you to enter the groupId, artifactId, version, and package.

tapestry-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.apache.tapestry</groupId>
1111
<artifactId>tapestry-project</artifactId>
12-
<version>5.1.0.0</version>
12+
<version>5.1.0.1-SNAPSHOT</version>
1313
</parent>
1414
<name>Tapestry Annotations</name>
1515
<description>

tapestry-component-report/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.apache.tapestry</groupId>
1414
<artifactId>tapestry-project</artifactId>
15-
<version>5.1.0.0</version>
15+
<version>5.1.0.1-SNAPSHOT</version>
1616
</parent>
1717

1818
<inceptionYear>2007</inceptionYear>

tapestry-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.apache.tapestry</groupId>
99
<artifactId>tapestry-project</artifactId>
10-
<version>5.1.0.0</version>
10+
<version>5.1.0.1-SNAPSHOT</version>
1111
</parent>
1212
<name>Tapestry Core Library</name>
1313
<description>

tapestry-hibernate-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.apache.tapestry</groupId>
1313
<artifactId>tapestry-project</artifactId>
14-
<version>5.1.0.0</version>
14+
<version>5.1.0.1-SNAPSHOT</version>
1515
</parent>
1616
<inceptionYear>2007</inceptionYear>
1717

tapestry-hibernate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.apache.tapestry</groupId>
1414
<artifactId>tapestry-project</artifactId>
15-
<version>5.1.0.0</version>
15+
<version>5.1.0.1-SNAPSHOT</version>
1616
</parent>
1717
<inceptionYear>2007</inceptionYear>
1818

tapestry-ioc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.apache.tapestry</groupId>
1010
<artifactId>tapestry-project</artifactId>
11-
<version>5.1.0.0</version>
11+
<version>5.1.0.1-SNAPSHOT</version>
1212
</parent>
1313
<name>Tapestry Inversion of Control Container</name>
1414
<description>

0 commit comments

Comments
 (0)