Skip to content

Instantly share code, notes, and snippets.

[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Arquillian Persistence Extension Integration Tests 1.0.0.Final-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ arquillian-persistence-integration-tests ---
[INFO] Deleting /home/aslak/dev/source/testing/arquillian-extension-persistence/int-tests/target
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-java-version) @ arquillian-persistence-integration-tests ---
@aslakknutsen
aslakknutsen / diff
Created February 25, 2014 22:50
Remove TopBar in full screen mode
[aslak@localhost:/usr/share/themes/Adwaita/metacity-1]$ diff metacity-theme-3.xml metacity-theme-3.xml_back
51c51
< <frame_geometry name="max" has_title="false" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false">
---
> <frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false">
54,56c54,56
< <distance name="left_titlebar_edge" value="0"/>
< <distance name="right_titlebar_edge" value="0"/>
< <distance name="title_vertical_pad" value="0"/> <!--
---
@aslakknutsen
aslakknutsen / source.adoc
Created March 7, 2014 23:12
AsciidoctorJ issues with Inner Extension classes
package org.arquillian.forge.howto.aciidoc;

import static org.asciidoctor.Asciidoctor.Factory.create;

import java.io.File;
import java.util.Map;

import javax.enterprise.context.ApplicationScoped;
<?xml version="1.0" encoding="UTF-8"?><server description="new server">
<!-- Enable features -->
<featureManager>
<!--
<feature>webProfile-6.0</feature>
-->
<feature>servlet-3.0</feature>
<feature>jaxrs-1.1</feature>
<feature>json-1.0</feature>
@aslakknutsen
aslakknutsen / gist:11350967
Created April 27, 2014 17:26
JBoss Repos
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
@aslakknutsen
aslakknutsen / settings.xml
Created June 20, 2014 12:52
JBoss Community Maven Settings XML
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
@aslakknutsen
aslakknutsen / test_rspec.rb
Created August 20, 2014 17:29
Asciidoctor 1.5.0 regression?
require "asciidoctor"
require 'asciidoctor/extensions'
Asciidoctor::Extensions.register do
inline_macro do
named :javaapi
match /((?:java|javax)\.\w[\.\w]+\.[A-Z]\w+)/
process do |parent, target|
doc_uri_pattern = 'https://javaee-spec.java.net/nonav/javadocs/%s.html'
@aslakknutsen
aslakknutsen / index.html
Last active August 29, 2015 14:05
LiveOak Polymer Web Components
<link rel="import"
href="charts.html" />
<link rel="import"
href="liveoak.html" />
<polymer-element name="liveoak-demo">
<template>
<liveoak-config clientid="xyz" realm="my-app" />
@aslakknutsen
aslakknutsen / test.json
Last active August 29, 2015 14:05
Arquillian.json
{
"container": {
"qualifier": "X",
"configuration": {
"path": "a",
"classpath": [
"a",
"b"
]
}
@aslakknutsen
aslakknutsen / Console
Created September 23, 2014 18:16
Arquillian Core - Vert.X based
Registered: RegisterExtension [name=ModuleX, observes=[Observer [address=b1ab6db4-1018-4eb3-ab0b-5b4115c8265d, event=test.Before], Observer [address=631b29a8-6696-4303-ac74-4ad8ce37dd80, event=test.Before]]]
Sending event... test.BeforeSuite
Sending event... test.BeforeClass
beforeClass
Sending event... test.Before
Forward to b1ab6db4-1018-4eb3-ab0b-5b4115c8265d
Forward to 631b29a8-6696-4303-ac74-4ad8ce37dd80
Before Observer 1
Before Observer 2
before