errai-ioc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-ioc</artifactId> <version>4.16.0.Final</version> </dependency>
<?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::IOC</name> <artifactId>errai-ioc</artifactId> <packaging>jar</packaging> <!-- Parent --> <parent> <groupId>org.jboss.errai</groupId> <artifactId>errai-parent</artifactId> <version>4.16.0.Final</version> <relativePath>../pom.xml</relativePath> </parent> <build> <resources> <resource> <directory>src/main/java</directory> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/java</directory> </testResource> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> <configuration> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-config</artifactId> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-codegen</artifactId> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-codegen-gwt</artifactId> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-tools</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-gwt</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-javax-enterprise</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> </dependency> <!-- Must come after errai-common is inherited for patched JUnitShell --> <dependency> <groupId>org.gwtproject</groupId> <artifactId>gwt-user</artifactId> <!-- This should not be packaged with the Errai Distro. There are no runtime dependencies on it and it breaks deployment on JBoss AS and Tomcat --> <scope>provided</scope> </dependency> <dependency> <groupId>org.gwtproject</groupId> <artifactId>gwt-dev</artifactId> <!-- This should not be packaged with the Errai Distro. There are no runtime dependencies on it and it breaks deployment on JBoss AS and Tomcat --> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-bus</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <!-- src/main/java contains JUnit test harness stuff, so can't use test scope --> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.elemental2</groupId> <artifactId>elemental2-dom</artifactId> </dependency> </dependencies> <profiles> <profile> <id>integration-test</id> <dependencies> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <classifier>sources</classifier> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-codegen</artifactId> <exclusions> <exclusion> <groupId>org.eclipse.jdt</groupId> <artifactId>ecj</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <!-- This is required because the BasicIOCTest is run in "simulated client" mode, which prevents subsequent tests from succeeding --> <!-- <forkMode>pertest</forkMode> this is the same as below --> <!-- http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html#Migrating_the_Deprecated_forkMode_Parameter_to_forkCount_and_reuseForks --> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <argLine>-Xmx1500m -Dgwt.gen=/tmp/gwt_test_gen_out/ -Derrai.codegen.details=true -Dgwt.args='-testBeginTimeout 5 -generateJsInteropExports ${gwtArgs}' -Xdebug</argLine> <enableAssertions>false</enableAssertions> <systemProperties> <property> <name>java.io.tmpdir</name> <value>${project.build.directory}</value> </property> <property> <name>log4j.output.dir</name> <value>${project.build.directory}</value> </property> <property> <name>errai.ioc.jsinterop.support</name> <value>true</value> </property> </systemProperties> <excludes> <exclude>**/IOCTests.java</exclude> <exclude>**/org/jboss/errai/ioc/async/test/**/*.java</exclude> <exclude>**/unit/**/*.java</exclude> <exclude>**/*UnitTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <!-- Override exclusions in parent --> <configuration> <excludes combine.self="override"> </excludes> <includes combine.self="override"> <include>**/unit/**/*Test.java</include> <include>**/*UnitTest.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>