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
| Not in Maven Central: com.sun.faces:jsf-impl:jar:2.2.6-jbossorg-4 | |
| Not in Maven Central: com.sun:tools:jar:1.6 | |
| Not in Maven Central: com.sun:tools:jar:1.7 | |
| Not in Maven Central: com.sun.xml.bind:jaxb-impl:jar:2.2.5.jboss-1 | |
| Not in Maven Central: com.sun.xml.bind:jaxb-xjc:jar:2.2.5.jboss-1 | |
| Not in Maven Central: com.sun.xml.messaging.saaj:saaj-impl:jar:1.3.16-jbossorg-1 | |
| Not in Maven Central: org.apache.directory.jdbm:apacheds-jdbm1:bundle:2.0.0-M2 | |
| Not in Maven Central: org.jacorb:jacorb:jar:2.3.2-jbossorg-5 | |
| Not in Maven Central: org.jboss.common:jboss-common-beans:jar:1.1.0.Final | |
| Not in Maven Central: org.jboss.com.sun.httpserver:httpserver:jar:1.0.1.Final |
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
| Not in Maven Central: com.sun.faces:jsf-impl:jar:2.1.18-jbossorg-1 | |
| Not in Maven Central: com.sun:tools:jar:1.6 | |
| Not in Maven Central: org.jacorb:jacorb:jar:2.3.2.jbossorg-4 | |
| Not in Maven Central: org.jboss.as:jboss-as-client-all:jar:7.2.0.Final | |
| Not in Maven Central: org.jboss.as:jboss-as-clustering-common:jar:tests | |
| Not in Maven Central: org.jboss.as:jboss-as-osgi-configadmin:bundle:7.2.0.Final | |
| Not in Maven Central: org.jboss.as:jboss-as-osgi-http:bundle:7.2.0.Final | |
| Not in Maven Central: org.jboss.as:jboss-as-osgi-jpa:bundle:7.2.0.Final | |
| Not in Maven Central: org.jboss.byteman:byteman-bmunit:jar:2.0.1 | |
| Not in Maven Central: org.jboss.byteman:byteman-install:jar:2.0.1 |
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
| public class PushApplicationServiceTest { | |
| private static class LoggedInTestProducer { | |
| @Produces | |
| @LoggedIn | |
| public String userName() { | |
| return "admin"; | |
| } | |
| } |
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
| /* | |
| * JBoss, Home of Professional Open Source | |
| * Copyright 2012, Red Hat Middleware LLC, and individual contributors | |
| * by the @authors tag. See the copyright.txt in the distribution for a | |
| * full listing of individual contributors. | |
| * | |
| * Licensed 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 | |
| * http://www.apache.org/licenses/LICENSE-2.0 |
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
| mvn -f platforms/android-19/pom.xml -N install | |
| mvn -f extras/google-play-services/pom.xml -N install | |
| mvn -f extras/compatibility-v4/pom.xml -N install | |
| mvn -f extras/compatibility-v7-appcompat/pom.xml -N install |
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
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Building Java Apple Push Notification Service Library 1.0.0.Beta4-SNAPSHOT | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] | |
| [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ apns --- | |
| [INFO] com.notnoop.apns:apns:jar:1.0.0.Beta4-SNAPSHOT | |
| [INFO] +- commons-httpclient:commons-httpclient:jar:3.1:compile | |
| [INFO] | +- commons-logging:commons-logging:jar:1.0.4:compile | |
| [INFO] | \- commons-codec:commons-codec:jar:1.2:compile | |
| [INFO] +- uk.org.lidalia:slf4j-test:jar:1.0.0-jdk6:test |
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
| installations { | |
| tattletale { | |
| product = "foo" | |
| version = "bar" | |
| content { | |
| remoteUrl = "http://foo/bar.jar" | |
| home = "foo" | |
| fileName = "bar" | |
| autoExtract = false | |
| } |
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
| // update arquillian.xml files with EAP home in all installations and integration test directory | |
| project.selectedInstallations.inject( Tasks.chain([ | |
| jbossHome: "${home}" | |
| ], ArquillianXmlUpdater).dir(project.rootDir).containers('jboss', 'domain-controller', 'main-server-group') | |
| ) { arqXmlUpdater, installation -> | |
| arqXmlUpdater.dir(installation.home) | |
| }.execute().await() |
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
| public class SpaceliftToolFromInstallationTest { | |
| @Test | |
| public void installAndroidSDKAndProvideTool() { | |
| Project project = ProjectBuilder.builder().build() | |
| project.apply plugin: 'aerogear-test-env' | |
| project.setProperty("androidTargets", ["19"]) |
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
| Tasks.prepare(CreateFileTask.class) | |
| .named("target/foobar") | |
| .then(DataSampler.class) | |
| .generateRandomData(123) | |
| .then(FileReader.class) | |
| .then(ExecutionCounter.class) | |
| .execute().awaitUntil(3, TimeUnit.SECONDS, new ExecutionCondition<Integer>() { | |
| @Override | |
| public boolean satisfiedBy(Integer object) throws ExecutionException { | |
| return object >= 3; |