| Author | Dave Jarvis <email> |
|---|---|
| Date | 2015-02-08 11:29:00 GMT-0800 |
| Commit | 40ecb3f48a0616a94a27c20c3d310977bba15967 |
| Parent | c5a160f |
| Makefile | ||
| -bnfc.log make.log | ||
| +bnfc.log | ||
| +make.log | ||
| +build | ||
| # Overview | ||
| +Relational XPath Map (RXM) is a terse database query language that | ||
| +produces structured documents using a [BNF Converter](http://bnfc.digitalgrammars.com/). | ||
| + | ||
| ``` | ||
| root > people, # "root" is a keyword |
| +apply plugin: "java" | ||
| +apply plugin: "application" | ||
| + | ||
| +sourceCompatibility = 1.8 | ||
| +targetCompatibility = 1.8 | ||
| + | ||
| +sourceSets { | ||
| + main { | ||
| + output.classesDir = "$buildDir/" | ||
| + | ||
| + java { | ||
| + srcDir "source/java" | ||
| + } | ||
| + } | ||
| +} | ||
| + | ||
| +dependencies { | ||
| +} | ||
| + | ||
| +repositories { | ||
| + maven { | ||
| + url "https://maven.atlassian.com/repository/public/" | ||
| + } | ||
| + | ||
| + flatDir { | ||
| + dirs "lib" | ||
| + } | ||
| +} | ||
| + | ||
| +buildDir=build | ||
| + | ||
| Delta | 37 lines added, 1 line removed, 36-line increase |
|---|