Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 652541 Details for
Bug 871413
Arquillian AS7 7.1.1.Final adaptor is not compatible with EAP 6.0.1
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
-with-tools BOM file which contains the fix until 6.0.1.ER5 is out
jboss-javaee-6.0-with-tools-1.0.2.Final-redhat-1.pom.xml (text/xml), 6.92 KB, created by
Karel Piwko
on 2012-11-27 08:54:53 UTC
(
hide
)
Description:
-with-tools BOM file which contains the fix until 6.0.1.ER5 is out
Filename:
MIME Type:
Creator:
Karel Piwko
Created:
2012-11-27 08:54:53 UTC
Size:
6.92 KB
patch
obsolete
><?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/maven-v4_0_0.xsd"> > > <modelVersion>4.0.0</modelVersion> > > <parent> > <groupId>org.jboss.bom</groupId> > <version>1.0.2.Final-redhat-1</version> > <artifactId>jboss-bom-parent</artifactId> > </parent> > > <artifactId>jboss-javaee-6.0-with-tools</artifactId> > <packaging>pom</packaging> > > <name>JBoss Java EE 6 Specification APIs with Tools</name> > <description>Dependency Management for Java EE 6 Specification APIs with Deployment and Testing Tools</description> > > <licenses> > <license> > <name>GNU Lesser General Public License, Version 2.1</name> > <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url> > <distribution>repo</distribution> > </license> > </licenses> > > <properties> > <!-- Version properties are inherited from parent --> > </properties> > > <dependencyManagement> > > <dependencies> > <!-- JBoss distributes a complete set of Java EE 6 APIs including > a Bill of Materials (BOM). A BOM specifies the versions of a "stack" (or > a collection) of artifacts. We use this here so that we always get the correct > versions of artifacts. Here we use the jboss-javaee-6.0 stack (you can > read this as the JBoss stack of the Java EE 6 APIs), and we use > version 3.0.0.Final which is the latest release of the stack. You can actually > use this stack with any version of JBoss AS that implements Java EE 6, not > just JBoss AS 7! --> > <dependency> > <groupId>org.jboss.spec</groupId> > <artifactId>jboss-javaee-6.0</artifactId> > <version>${version.org.jboss.spec.jboss.javaee.6.0}</version> > <type>pom</type> > <scope>import</scope> > </dependency> > > <!-- Recommended JUnit version --> > <!-- Note that JUnit is preferred framework --> > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>${version.junit}</version> > </dependency> > > <!-- Recommended TestNG version --> > <dependency> > <groupId>org.testng</groupId> > <artifactId>testng</artifactId> > <version>${version.org.testng}</version> > </dependency> > > <!-- Add Arquillian Dependencies certified as a part of JBoss Web Framework Kit --> > <dependency> > <groupId>org.jboss.bom</groupId> > <artifactId>jboss-wfk-arquillian</artifactId> > <version>${project.version}</version> > <type>pom</type> > <scope>import</scope> > </dependency> > > <!-- Arquillian Drone adds support for visual testing of your application --> > <!-- <dependency> > <groupId>org.jboss.arquillian.extension</groupId> > <artifactId>arquillian-drone-bom</artifactId> > <version>${version.org.jboss.arquillian.extension.drone}</version> > <type>pom</type> > <scope>import</scope> > </dependency> > --> > > <!-- Arquillian Drone bindings for DefaultSelenium based browsers --> > <dependency> > <groupId>org.jboss.arquillian.extension</groupId> > <artifactId>arquillian-drone-selenium-depchain</artifactId> > <version>${version.org.jboss.arquillian.extension.drone}</version> > <type>pom</type> > </dependency> > > <!-- Arquillian Drone bindings for WebDriver based browsers --> > <dependency> > <groupId>org.jboss.arquillian.extension</groupId> > <artifactId>arquillian-drone-webdriver-depchain</artifactId> > <version>${version.org.jboss.arquillian.extension.drone}</version> > <type>pom</type> > </dependency> > > <!-- Arquillian Graphene is an enhanced tool based on Selenium allowing you to test AJAX more easily --> > <dependency> > <groupId>org.jboss.arquillian.graphene</groupId> > <artifactId>arquillian-graphene</artifactId> > <version>${version.org.jboss.arquillian.graphene}</version> > <type>pom</type> > </dependency> > > <!-- Arquillian support for JBoss AS7 container --> > <!-- Note: Managed version of container allows Arquillian to control startup and shutdown of the container --> > <dependency> > <groupId>org.jboss.as</groupId> > <artifactId>jboss-as-arquillian-container-managed</artifactId> > <version>${version.org.jboss.as.arquillian.container}</version> > </dependency> > > <!-- Arquillian support for JBoss AS7 container --> > <!-- Note: Remote version of container allows Arquillian to connect to already running container --> > <dependency> > <groupId>org.jboss.as</groupId> > <artifactId>jboss-as-arquillian-container-remote</artifactId> > <version>${version.org.jboss.as.arquillian.container}</version> > </dependency> > > <!-- Specific version to make remoting compatible with EAP 6.0.1 --> > <dependency> > <groupId>org.jboss.remotingjmx</groupId> > <artifactId>remoting-jmx</artifactId> > <version>${version.org.jboss.remoting.jmx}</version> > </dependency> > > <dependency> > <groupId>org.jboss.remoting3</groupId> > <artifactId>jboss-remoting</artifactId> > <version>${version.org.jboss.remoting3}</version> > </dependency> > > </dependencies> > </dependencyManagement> > > <build> > <pluginManagement> > <plugins> > <!-- The Maven Surefire plugin tests your application. Here we ensure we are using a version compatible with Arquillian --> > <plugin> > <artifactId>maven-surefire-plugin</artifactId> > <version>${version.surefire.plugin}</version> > </plugin> > <!-- The JBoss AS plugin deploys your war to a local JBoss AS container --> > <!-- To use, set the JBOSS_HOME environment variable and run: > mvn package jboss-as:deploy --> > <plugin> > <groupId>org.jboss.as.plugins</groupId> > <artifactId>jboss-as-maven-plugin</artifactId> > <version>${version.org.jboss.as.plugins.maven.plugin}</version> > </plugin> > </plugins> > </pluginManagement> > </build> > ></project>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 871413
: 652541 |
704810