| Author | Dave Jarvis <email> |
|---|---|
| Date | 2015-03-15 19:39:58 GMT-0700 |
| Commit | f00a8514d1fd0d60ebf75e58833d533ae1f7c674 |
| Parent | e80cec5 |
| } | ||
| +// 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 ) | ||
| + } | ||
| } | ||
| } |
| +#!/bin/bash | ||
| + | ||
| +java -jar build/libs/rxm.jar $1 | ||
| + | ||
| (person.id = $id) || | ||
| (person.id <> $id) || | ||
| -(person.id = {$id, 12}) || | ||
| +(person.id = {$id, 42}) || | ||
| (person.id <> {$id, 42}) || | ||
| (person.id = null) || |
| Delta | 15 lines added, 1 line removed, 14-line increase |
|---|