-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80a9fca
commit ca166a6
Showing
11 changed files
with
537 additions
and
524 deletions.
There are no files selected for viewing
33 changes: 17 additions & 16 deletions
33
arquillian-core-reporter/arquillian-core-reporter-api/pom.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>arquillian-core-reporter-api</artifactId> | ||
<artifactId>arquillian-core-reporter-api</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
107 changes: 54 additions & 53 deletions
107
arquillian-core-reporter/arquillian-core-reporter-impl/pom.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,61 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-core-reporter-impl</artifactId> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<dependencies> | ||
|
||
<!-- Arquillian dependencies --> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-spi</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-test-api</artifactId> | ||
</dependency> | ||
|
||
<!-- Reporter dependencies --> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-core-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-impl</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.container</groupId> | ||
<artifactId>arquillian-container-chameleon</artifactId> | ||
<version>1.0.0.Alpha7</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.junit</groupId> | ||
<artifactId>arquillian-junit-container</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-core-reporter-impl</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<dependencies> | ||
|
||
<!-- Arquillian dependencies --> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-spi</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-test-api</artifactId> | ||
</dependency> | ||
|
||
<!-- Reporter dependencies --> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-core-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-impl</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.container</groupId> | ||
<artifactId>arquillian-container-chameleon</artifactId> | ||
<version>1.0.0.Alpha7</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.junit</groupId> | ||
<artifactId>arquillian-junit-container</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
|
||
</project> |
28 changes: 14 additions & 14 deletions
28
arquillian-core-reporter/arquillian-core-reporter-impl/src/test/resources/arquillian.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<arquillian xmlns="http://jboss.org/schema/arquillian" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation=" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation=" | ||
http://jboss.org/schema/arquillian | ||
http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> | ||
|
||
<container qualifier="chameleon" default="true"> | ||
<configuration> | ||
<property name="chameleonTarget">WildFly:10.0.0.Final:managed</property> | ||
<!--<property name="modulePath">target/server/wildfly-dist_10.1.0.Final/wildfly-10.1.0.Final/modules/</property>--> | ||
</configuration> | ||
</container> | ||
<container qualifier="chameleon" default="true"> | ||
<configuration> | ||
<property name="chameleonTarget">WildFly:10.0.0.Final:managed</property> | ||
<!--<property name="modulePath">target/server/wildfly-dist_10.1.0.Final/wildfly-10.1.0.Final/modules/</property>--> | ||
</configuration> | ||
</container> | ||
|
||
<!--<container qualifier="second_chameleon" > | ||
<configurations> | ||
<property name="chameleonTarget">WildFly:8.0.0.Final:managed</property> | ||
<!–<property name="modulePath">target/server/wildfly-dist_10.1.0.Final/wildfly-10.1.0.Final/modules/</property>–> | ||
</configurations> | ||
</container>--> | ||
<!--<container qualifier="second_chameleon" > | ||
<configurations> | ||
<property name="chameleonTarget">WildFly:8.0.0.Final:managed</property> | ||
<!–<property name="modulePath">target/server/wildfly-dist_10.1.0.Final/wildfly-10.1.0.Final/modules/</property>–> | ||
</configurations> | ||
</container>--> | ||
|
||
|
||
</arquillian> |
33 changes: 17 additions & 16 deletions
33
arquillian-environment-reporter/arquillian-environment-reporter-api/pom.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>arquillian-environment-reporter-api</artifactId> | ||
<artifactId>arquillian-environment-reporter-api</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
117 changes: 59 additions & 58 deletions
117
arquillian-environment-reporter/arquillian-environment-reporter-impl/pom.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,71 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-environment-reporter-impl</artifactId> | ||
<artifactId>arquillian-reporter-parent</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-environment-reporter-impl</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<dependencies> | ||
<dependencies> | ||
|
||
<!-- Arquillian dependencies --> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-spi</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-test-api</artifactId> | ||
</dependency> | ||
<!-- Arquillian dependencies --> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-spi</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.container</groupId> | ||
<artifactId>arquillian-container-test-api</artifactId> | ||
</dependency> | ||
|
||
<!-- Reporter dependencies --> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-core-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-impl</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<!-- Reporter dependencies --> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-core-reporter-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.reporter</groupId> | ||
<artifactId>arquillian-reporter-impl</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.container</groupId> | ||
<artifactId>arquillian-container-chameleon</artifactId> | ||
<version>1.0.0.Alpha7</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.junit</groupId> | ||
<artifactId>arquillian-junit-container</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.arquillian.container</groupId> | ||
<artifactId>arquillian-container-chameleon</artifactId> | ||
<version>1.0.0.Alpha7</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.arquillian.junit</groupId> | ||
<artifactId>arquillian-junit-container</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
</dependencies> | ||
|
||
|
||
</project> |
14 changes: 7 additions & 7 deletions
14
...vironment-reporter/arquillian-environment-reporter-impl/src/test/resources/arquillian.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<arquillian xmlns="http://jboss.org/schema/arquillian" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation=" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation=" | ||
http://jboss.org/schema/arquillian | ||
http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> | ||
|
||
<container qualifier="chameleon" default="true"> | ||
<configuration> | ||
<property name="chameleonTarget">WildFly:10.0.0.Final:managed</property> | ||
</configuration> | ||
</container> | ||
<container qualifier="chameleon" default="true"> | ||
<configuration> | ||
<property name="chameleonTarget">WildFly:10.0.0.Final:managed</property> | ||
</configuration> | ||
</container> | ||
|
||
</arquillian> |
Oops, something went wrong.