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 591778 Details for
Bug 831990
Errai: Weld integration still depends on weld-build-config
[?]
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.
Fixed pom.xml file
pom.xml (text/xml), 16.71 KB, created by
Karel Piwko
on 2012-06-14 08:56:08 UTC
(
hide
)
Description:
Fixed pom.xml file
Filename:
MIME Type:
Creator:
Karel Piwko
Created:
2012-06-14 08:56:08 UTC
Size:
16.71 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> > <name>Errai::CDI::Weld Integration</name> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-weld-integration</artifactId> > <packaging>jar</packaging> > > <!-- Parent --> > <parent> > <groupId>org.jboss.errai</groupId> > <artifactId>cdi-integration-parent</artifactId> > <version>2.0.1.Final-redhat-1</version> > <relativePath>../</relativePath> > </parent> > > <build> > <testOutputDirectory>war/WEB-INF/classes</testOutputDirectory> > <resources> > <resource> > <directory>src/main/java</directory> > </resource> > <resource> > <directory>src/main/resources</directory> > </resource> > </resources> > </build> > > <profiles> > <profile> > <id>default</id> > <activation> > <activeByDefault>true</activeByDefault> > </activation> > <properties> > <profile.testOutputDirectory>target/test-classes</profile.testOutputDirectory> > </properties> > > <dependencies> > <!-- Errai Core --> > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-bus</artifactId> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-ioc</artifactId> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>javax.enterprise</groupId> > <artifactId>cdi-api</artifactId> > <version>1.0-SP4-redhat-1</version> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-cdi-client</artifactId> > <version>${project.version}</version> > <scope>compile</scope> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-cdi-jetty</artifactId> > <version>${project.version}</version> > <scope>compile</scope> > </dependency> > > <!-- Weld --> > <!-- dependency> > <groupId>org.jboss.weld</groupId> > <artifactId>weld-build-config</artifactId> > <version>1.1.8.Final-redhat-1</version> > <scope>compile</scope> > </dependency--> > <dependency> > <groupId>org.jboss.weld</groupId> > <artifactId>weld-spi</artifactId> > <version>1.1.Final-redhat-1</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.weld</groupId> > <artifactId>weld-core</artifactId> > <version>1.1.8.Final-redhat-1</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.weld.se</groupId> > <artifactId>weld-se-core</artifactId> > <version>${weld.version}</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.weld.servlet</groupId> > <artifactId>weld-servlet</artifactId> > <version>${weld.version}</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.spec.javax.el</groupId> > <artifactId>jboss-el-api_2.2_spec</artifactId> > <version>1.0.1.Final-redhat-1</version> > </dependency> > > <!-- GWT --> > <dependency> > <groupId>com.google.gwt</groupId> > <artifactId>gwt-user</artifactId> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>com.google.gwt</groupId> > <artifactId>gwt-dev</artifactId> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>javax.validation</groupId> > <artifactId>validation-api</artifactId> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>javax.validation</groupId> > <artifactId>validation-api</artifactId> > <classifier>sources</classifier> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>${junit.version}</version> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-javax-enterprise</artifactId> > <version>${project.version}</version> > <scope>provided</scope> > </dependency> > > <dependency> > <groupId>org.jboss</groupId> > <artifactId>jboss-common-core</artifactId> > <version>2.2.17.GA-redhat-1</version> > </dependency> > > > </dependencies> > > <build> > <plugins> > <plugin> > <artifactId>maven-compiler-plugin</artifactId> > <configuration> > <source>1.6</source> > <target>1.6</target> > <testExcludes> > <exclude>com/google/gwt/junit/JUnitShell.java</exclude> > </testExcludes> > </configuration> > </plugin> > <plugin> > <artifactId>maven-surefire-plugin</artifactId> > <configuration> > <excludes> > <exclude>**/*IntegrationTest.java</exclude> > </excludes> > </configuration> > </plugin> > </plugins> > </build> > </profile> > > <profile> > <id>integration-test</id> > <properties> > <profile.testOutputDirectory>war/WEB-INF/classes</profile.testOutputDirectory> > </properties> > > <build> > <testResources> > <testResource> > <directory>src/test/java</directory> > </testResource> > <testResource> > <directory>src/test/resources</directory> > </testResource> > </testResources> > <plugins> > <plugin> > <artifactId>maven-compiler-plugin</artifactId> > <configuration> > <source>1.6</source> > <target>1.6</target> > </configuration> > </plugin> > <plugin> > <artifactId>maven-surefire-plugin</artifactId> > <configuration> > <skipTests>false</skipTests> > <additionalClasspathElements> > <additionalClasspathElement>${basedir}/${profile.testOutputDirectory}/ > </additionalClasspathElement> > <additionalClasspathElement>${basedir}/src/test/java/</additionalClasspathElement> > </additionalClasspathElements> > <useManifestOnlyJar>false</useManifestOnlyJar> > <forkMode>pertest</forkMode> > <argLine>-Xmx2048m -Derrai.devel.nocache=true -Dgwt.args='-testBeginTimeout 5'</argLine> > > <systemProperties> > <!-- Must disable long polling for automated tests to succeed --> > <property> > <name>errai.hosted_mode_testing</name> > <value>true</value> > </property> > <!-- > Do not accidently package server test marshallers when building Errai > --> > <property> > <name>errai.marshalling.server.classOutput.enabled</name> > <value>false</value> > </property> > > </systemProperties> > </configuration> > </plugin> > </plugins> > </build> > > <dependencies> > <dependency> > <groupId>javax.servlet</groupId> > <artifactId>servlet-api</artifactId> > <version>2.5</version> > <scope>provided</scope> > </dependency> > <dependency> > <groupId>javax.servlet</groupId> > <artifactId>jsp-api</artifactId> > <version>2.0</version> > <scope>provided</scope> > </dependency> > <dependency> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > <version>1.2.16</version> > </dependency> > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>${junit.version}</version> > <scope>compile</scope> > </dependency> > > <!-- Errai Core --> > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-ioc</artifactId> > <exclusions> > <exclusion> > <groupId>javax.inject</groupId> > <artifactId>javax.inject</artifactId> > </exclusion> > <exclusion> > <groupId>javax.annotation</groupId> > <artifactId>jsr250-api</artifactId> > </exclusion> > </exclusions> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-cdi-client</artifactId> > <version>${project.version}</version> > <scope>compile</scope> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-tools</artifactId> > <version>${project.version}</version> > </dependency> > <dependency> > <groupId>org.mvel</groupId> > <artifactId>mvel2</artifactId> > <version>${mvel.version}</version> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-cdi-jetty</artifactId> > <version>${project.version}</version> > </dependency> > > <!-- CDI Development Utils --> > <!-- This must be placed above com.google.gwt:gwt-dev to override the > Jetty that is present there --> > <dependency> > <groupId>org.mortbay.jetty</groupId> > <artifactId>jetty</artifactId> > <version>${jetty.version}</version> > <!--<scope>compile</scope>--> > </dependency> > <dependency> > <groupId>org.mortbay.jetty</groupId> > <artifactId>jetty-plus</artifactId> > <version>${jetty.version}</version> > <!--<scope>compile</scope>--> > </dependency> > <dependency> > <groupId>org.mortbay.jetty</groupId> > <artifactId>jetty-naming</artifactId> > <version>${jetty.version}</version> > <!--<scope>compile</scope>--> > </dependency> > > <!-- Weld Modules --> > <!-- > <dependency> > <groupId>org.jboss.weld</groupId> > <artifactId>weld-build-config</artifactId> > <version>1.1.8.Final-redhat-1</version> > <scope>compile</scope> > </dependency> > --> > <dependency> > <groupId>org.jboss.weld</groupId> > <artifactId>weld-spi</artifactId> > <version>1.1.Final-redhat-1</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.weld</groupId> > <artifactId>weld-core</artifactId> > <version>1.1.8.Final-redhat-1</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.weld.se</groupId> > <artifactId>weld-se-core</artifactId> > <version>${weld.version}</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.jboss.weld.servlet</groupId> > <artifactId>weld-servlet</artifactId> > <version>${weld.version}</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.glassfish.web</groupId> > <artifactId>el-impl</artifactId> > <scope>runtime</scope> > <version>2.1.2-b04</version> > </dependency> > <dependency> > <groupId>org.jboss.spec.javax.el</groupId> > <artifactId>jboss-el-api_2.2_spec</artifactId> > <version>1.0.1.Final-redhat-1</version> > </dependency> > > > <!-- GWT and GWT Extensions --> > <dependency> > <groupId>com.google.gwt</groupId> > <artifactId>gwt-user</artifactId> > <version>${gwt.version}</version> > <scope>compile</scope> > </dependency> > > <dependency> > <groupId>com.google.gwt</groupId> > <artifactId>gwt-dev</artifactId> > <version>${gwt.version}</version> > <scope>compile</scope> > </dependency> > > <dependency> > <groupId>javax.validation</groupId> > <artifactId>validation-api</artifactId> > <scope>compile</scope> > </dependency> > > <dependency> > <groupId>javax.validation</groupId> > <artifactId>validation-api</artifactId> > <classifier>sources</classifier> > <scope>compile</scope> > </dependency> > > <!-- Runtime / Container dependencies --> > <dependency> > <groupId>org.slf4j</groupId> > <artifactId>slf4j-api</artifactId> > <version>${slf4j.version}</version> > </dependency> > > <dependency> > <groupId>org.jboss</groupId> > <artifactId>jboss-common-core</artifactId> > <version>2.2.17.GA-redhat-1</version> > </dependency> > > <dependency> > <groupId>org.jboss.errai</groupId> > <artifactId>errai-javax-enterprise</artifactId> > <version>${project.version}</version> > <scope>provided</scope> > </dependency> > > </dependencies> > </profile> > </profiles> ></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 831990
: 591778