Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.36 KB

File metadata and controls

38 lines (31 loc) · 1.36 KB

cfparser

Build Status Codacy Badge

CFParser is available on Maven Central!

The CFParser license is BSD (http://www.opensource.org/licenses/bsd-license.html).

To build use: mvn clean install

<dependency>
    <groupId>com.github.cfmleditor</groupId>
    <artifactId>cfml.parsing</artifactId>
    <version>2.15.1-SNAPSHOT</version>
</dependency>

To update the version number prior to a build, run: mvn versions:set -DnewVersion=2.15.1-SNAPSHOT

#Release example (we do our final commit for 2.2.14-SNAPSHOT on the develop branch, we're ready to release it)

[develop]$`git checkout master`
 [master]$`git merge --no-ff develop`
 [master]$`mvn versions:set -DnewVersion=2.2.14`
 [master]$`mvn clean verify`
 [master]$`git commit -am 'Release version 2.2.14'`
 [master]$`git tag -a 2.2.14`
 [master]$`git checkout develop`
[develop]$`git merge --no-ff master`
[develop]$`mvn versions:set -DnewVersion=2.2.14-SNAPSHOT`
[develop]$`git commit -am 'Setup version 2.2.14 for development'`