This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <profile> | |
| <id>arquillian-tomcat-managed</id> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.jboss.spec</groupId> | |
| <artifactId>jboss-javaee-6.0</artifactId> | |
| <version>1.0.0.Final</version> | |
| <type>pom</type> | |
| <scope>provided</scope> | |
| </dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <container qualifier="tomcat-managed-7" default="true"> | |
| <configuration> | |
| <property name="catalinaHome">${user.home}/opt/apache-tomee-web-1.0.0</property> | |
| <property name="user">manager</property> | |
| <property name="pass">manager</property> | |
| </configuration> | |
| </container> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @RunWith(Arquillian.class) | |
| public class AGreeterTest { | |
| @Deployment | |
| public static JavaArchive archive = ShrinkWrap.create(JavaArchive.class) | |
| .addClasses(Greeter.class, PhraseBuilder.class) | |
| .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml"); | |
| @Inject | |
| Greeter greeter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This script curates a list all the project leads of JBoss Community projects using the | |
| * issue tracker as the information authority. | |
| */ | |
| // The default TTL in Ivy 2.1.0 is 10 seconds, which results in frequent slow executions. You can get | |
| // faster startup by changing it to a much larger interval. | |
| // Creating the file ~/.groovy/grapeConfig.xml from | |
| // http://svn.codehaus.org/groovy/tags/GROOVY_1_7_10/src/main/groovy/grape/defaultGrapeConfig.xml | |
| // and customize the ttl default property. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * slides2png plays a dzslides presentation using WebDriver, captures each | |
| * slide to a PNG and generates a shell script to collate the PNGs together | |
| * into a PDF using convert (from ImageMagick). | |
| * | |
| * The URL of the presentation is passed as the sole argument to the script. | |
| * If the presentation is local, specify the absolute path prefixed with the | |
| * file:// protocol. | |
| * | |
| * @author Dan Allen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: fedora-17-packager | |
| summary: Operating system for creating packages for Fedora 17 | |
| os: | |
| name: fedora | |
| version: 17 | |
| hardware: | |
| cpus: 4 | |
| memory: 4096 | |
| partitions: | |
| "/": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let mapleader=";" | |
| inoremap <Leader><Leader> <Leader> | |
| if has("autocmd") | |
| au BufRead,BufNewFile *.asciidoc | |
| \ imap <buffer> <C-]> <C-o>B<C-o>E<Right><Space>| | |
| \ imap <buffer> <C-i> <C-o>$<CR><CR>| | |
| \ imap <buffer> <C-j> <Down><C-o>o<CR>| | |
| \ imap <buffer> <Leader>h1 = | | |
| \ imap <buffer> <Leader>h2 == | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :admonition_styles: &ADMONITION_STYLES [NOTE, TIP, IMPORTANT, WARNING, CAUTION] | |
| :default_doctype: article | |
| :default_backend: html5 | |
| :headings: | |
| :oneline: | |
| # examples: | |
| # | |
| # = Document Title | |
| # | |
| # == First Section == |