From commits-return-3882-archive-asf-public=cust-asf.ponee.io@velocity.apache.org Sat Dec 14 12:19:17 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id D162A180629 for ; Sat, 14 Dec 2019 13:19:16 +0100 (CET) Received: (qmail 54643 invoked by uid 500); 14 Dec 2019 12:19:16 -0000 Mailing-List: contact commits-help@velocity.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@velocity.apache.org Delivered-To: mailing list commits@velocity.apache.org Received: (qmail 54634 invoked by uid 99); 14 Dec 2019 12:19:16 -0000 Received: from Unknown (HELO svn01-us-east.apache.org) (13.90.137.153) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Dec 2019 12:19:16 +0000 Received: from svn01-us-east.apache.org (svn01-us-east.apache.org [127.0.0.1]) by svn01-us-east.apache.org (ASF Mail Server at svn01-us-east.apache.org) with ESMTP id 092AE17BB9F for ; Sat, 14 Dec 2019 12:19:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1871465 - /velocity/engine/trunk/README.md Date: Sat, 14 Dec 2019 12:19:15 -0000 To: commits@velocity.apache.org From: cbrisson@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20191214121916.092AE17BB9F@svn01-us-east.apache.org> Author: cbrisson Date: Sat Dec 14 12:19:15 2019 New Revision: 1871465 URL: http://svn.apache.org/viewvc?rev=1871465&view=rev Log: [engine] Fix README Modified: velocity/engine/trunk/README.md Modified: velocity/engine/trunk/README.md URL: http://svn.apache.org/viewvc/velocity/engine/trunk/README.md?rev=1871465&r1=1871464&r2=1871465&view=diff ============================================================================== --- velocity/engine/trunk/README.md (original) +++ velocity/engine/trunk/README.md Sat Dec 14 12:19:15 2019 @@ -19,15 +19,19 @@ Apache Velocity 2.2 will run with any Ja Building from source requires Java development kit v1.8 or greater and Maven 3 (3.0.5+). At compile time, Maven should fetch all needed dependencies, which are: + * commons-lang v3.9 * slf4j-api v1.7.28 + plus the following ones, needed for the integrated tests: + * slf4j-simple v1.7.28 * junit v4.12 * hsqldb v2.5.0 * commons-io 2.6 At runtime, Velocity only needs: + * commons-lang v3.9+ * slf4j-api and an slf4j binding, v1.7.28+ @@ -58,7 +62,9 @@ WEB-INF/lib directory. ## CUSTOMIZING THE PARSER -Since 2.2, it's possible to (build a custom parser)[http://velocity.apache.org/engine/2.2/developer-guide.html#customizing-the-vtl-parser], to change some of the characters used by in the VTL syntax: `*`, `@`, `$` and `#`. Let's say you want to merge some templatized jQuery code full of `$` characters, you can for instance build you own parser which will use the `§` character for references instead of `$`. +Since 2.2, it's possible to [build a custom parser](http://velocity.apache.org/engine/2.2/developer-guide.html#customizing-the-vtl-parser), to change some of the characters used by in the VTL syntax: `*`, `@`, `$` and `#`. + +Let's say you want to merge some templatized jQuery code full of `$` characters, you can for instance build you own parser which will use the `§` character as references prefix instead of `$`. ## TRYING THE EXAMPLES