Dave Jarvis' Repositories

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

Disabled building distribution files until library duplication can be resolved.

AuthorDave Jarvis <email>
Date2015-03-15 19:39:58 GMT-0700
Commitf00a8514d1fd0d60ebf75e58833d533ae1f7c674
Parente80cec5
build.gradle
}
+// The zip and tar currently include the libraries twice.
+distZip.enabled = false
+distTar.enabled = false
+
jar {
manifest {
attributes "Main-Class": "$mainClassName"
+ }
+
+ from {
+ configurations.compile.collect {
+ it.isDirectory() ? it : zipTree( it )
+ }
}
}
run.sh
+#!/bin/bash
+
+java -jar build/libs/rxm.jar $1
+
test/where.rxm
(person.id = $id) ||
(person.id <> $id) ||
-(person.id = {$id, 12}) ||
+(person.id = {$id, 42}) ||
(person.id <> {$id, 42}) ||
(person.id = null) ||
Delta15 lines added, 1 line removed, 14-line increase