This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-site.git
The following commit(s) were added to refs/heads/master by this push: new a53f92a Add clarification for maven.build.timestamp default UTC timzeone a53f92a is described below commit a53f92a99ba273607a41abb514210a42a1b6d292 Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Sat Nov 23 19:04:16 2019 +0100 Add clarification for maven.build.timestamp default UTC timzeone --- content/apt/guides/introduction/introduction-to-the-pom.apt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/apt/guides/introduction/introduction-to-the-pom.apt b/content/apt/guides/introduction/introduction-to-the-pom.apt index b2de8f0..80e9ca8 100644 --- a/content/apt/guides/introduction/introduction-to-the-pom.apt +++ b/content/apt/guides/introduction/introduction-to-the-pom.apt @@ -509,7 +509,7 @@ Introduction to the POM *-----------------------------------+--------------------------------------+ | <<<project.baseUri>>> | The directory that the current project resides in, represented as an URI. <Since Maven 2.1.0> | *-----------------------------------+--------------------------------------+ -| <<<maven.build.timestamp>>> | The timestamp that denotes the start of the build. <Since Maven 2.1.0-M1> | +| <<<maven.build.timestamp>>> | The timestamp that denotes the start of the build (UTC). <Since Maven 2.1.0-M1> | *-----------------------------------+--------------------------------------+ The format of the build timestamp can be customized by declaring the property <<<maven.build.timestamp.format>>> as @@ -526,7 +526,7 @@ Introduction to the POM +----+ The format pattern has to comply with the rules given in the API documentation for - {{{http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html}SimpleDateFormat}}. + {{{https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html}SimpleDateFormat}}. If the property is not present, the format defaults to the value already given in the example. *** Properties @@ -537,7 +537,7 @@ Introduction to the POM <project> ... <properties> - <mavenVersion>2.1</mavenVersion> + <mavenVersion>3.0</mavenVersion> </properties> <dependencies> <dependency> @@ -547,7 +547,7 @@ Introduction to the POM </dependency> <dependency> <groupId>org.apache.maven</groupId> - <artifactId>maven-project</artifactId> + <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> </dependency> </dependencies>