Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/rxm.git

Revised overview.

Author Dave Jarvis <email>
Date 2015-02-08 11:29:00 GMT-0800
Commit 40ecb3f48a0616a94a27c20c3d310977bba15967
Parent c5a160f
.gitignore
Makefile
-bnfc.log make.log
+bnfc.log
+make.log
+build
README.md
# 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
build.gradle
+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"
+ }
+}
+
gradle.properties
+buildDir=build
+
Delta 37 lines added, 1 line removed, 36-line increase