Skip to content

Instantly share code, notes, and snippets.

{
"deps": [
{
"locator": "github.com/ponylang/regex.git"
},
{
"locator": "github.com/ponylang/net-ssl.git"
},
{
"locator": "github.com/niclash/jay.git"
update: updating from /home/niclas/dev/pony/pink2web
update: will load dep: github.com/niclash/jennet @
git cloning github.com/niclash/pony-websocket.git into /home/niclas/dev/pony/pink2web/_repos/github_com_niclash_pony_websocket_git
update: will load dep: github.com/ponylang/http @
update: will load dep: github.com/ponylang/net-ssl @
update: will load dep: github.com/ponylang/crypto @
git cloning github.com/ponylang/net-ssl.git into /home/niclas/dev/pony/pink2web/_repos/github_com_ponylang_net_ssl_git
update: will load dep: github.com/niclash/pony-websocket @
git cloning github.com/niclash/pony-metric.git into /home/niclas/dev/pony/pink2web/_repos/github_com_niclash_pony_metric_git
update: will load dep: github.com/ponylang/regex @
niclas@node1:~/temp/apache-zest-java-2.1-RC0-src$ ./gradlew -Djavax.net.debug=ssl:handshake -Dversion=2.1-RC0 assemble -x signArchives
Downloading https://services.gradle.org/distributions/gradle-2.5-all.zip
keyStore is :
keyStore type is : jks
keyStore provider is :
init keystore
init keymanager of type SunX509
trustStore is: No File Available, using empty keystore.
trustStore type is : jks
trustStore provider is :
@niclash
niclash / gist:1856867
Created February 18, 2012 01:59
ValueBuilder Testcase
@Test
public void testInner()
{
ValueBuilder<InnerValue> innerBuilder = module.newValueBuilder( InnerValue.class );
InnerValue inner = innerBuilder.prototype();
List<String> list = inner.listProp().get();
list.add( "Qi4j" );
inner.mapProp().set( new HashMap<String, String>() );
inner = innerBuilder.newInstance();
// If we reach this point, value creation went well