integration
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>integration</artifactId> <version>3.1.15-GA</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"> <parent> <artifactId>broadleaf</artifactId> <groupId>org.broadleafcommerce</groupId> <version>3.1.15-GA</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>integration</artifactId> <name>BroadleafCommerce Integration</name> <description>BroadleafCommerce Integration</description> <url>http://www.broadleafcommerce.org</url> <properties> <project.uri>${project.baseUri}/../</project.uri> </properties> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>jeff</id> <name>Jeff Fischer</name> <email>jfischer@broadleafcommerce.org</email> <organization>Broadleaf Commerce</organization> <organizationUrl>http://www.broadleafcommerce.org</organizationUrl> <roles> <role>cto</role> <role>architect</role> <role>developer</role> </roles> <timezone>-6</timezone> </developer> <developer> <id>brian</id> <name>Brian Polster</name> <email>bpolster@broadleafcommerce.org</email> <organization>Broadleaf Commerce</organization> <organizationUrl>http://www.broadleafcommerce.org</organizationUrl> <roles> <role>president</role> <role>architect</role> <role>developer</role> </roles> <timezone>-6</timezone> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>default-test</id> <configuration> <skipTests>true</skipTests> <argLine>-Xmx1024m -XX:MaxPermSize=512m -Dlegacy=true</argLine> </configuration> </execution> <execution> <id>non-legacy-test</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <excludes> <exclude>**/Legacy**Test.java</exclude> </excludes> <argLine>-Xmx1024m -XX:MaxPermSize=512m</argLine> </configuration> </execution> </executions> </plugin> <plugin> <!-- Only delete the contents of the target folder so that it doesn't lose its "derived" status in Eclipse --> <artifactId>maven-clean-plugin</artifactId> <configuration> <excludeDefaultDirectories>true</excludeDefaultDirectories> <filesets> <fileset> <directory>target</directory> <includes> <include>**/*</include> </includes> </fileset> </filesets> </configuration> <version>2.4.1</version> </plugin> </plugins> </build> <profiles> <profile> <!-- Skip legacy tests by default, activated with the Maven 'legacy-test' profile --> <id>legacy-test</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>legacy-test</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <excludes> <exclude>**/OrderTest.java</exclude> <exclude>**/CartTest.java</exclude> <exclude>**/CheckoutTest.java</exclude> <exclude>**/FulfillmentGroupDaoTest.java</exclude> <exclude>**/OfferServiceTest.java</exclude> <exclude>**/OfferTest.java</exclude> <exclude>**/PricingTest.java</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>blc-development</id> <build> <plugins> <plugin> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> <executions> <execution> <id>generate-rebel-xml</id> <phase>process-resources</phase> <goals> <goal>generate</goal> </goals> </execution> <execution> <id>generate-test-rebel-xml</id> <phase>process-test-resources</phase> <goals> <goal>generate</goal> </goals> <configuration> <classpath> <resources> <resource> <directory>target/test-classes</directory> </resource> </resources> </classpath> <rebelXmlDirectory>target/test-classes</rebelXmlDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>legacy-test</id> <configuration> <argLine> -Dlegacy=true -Xmx1024m -XX:MaxPermSize=512m -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8083 -javaagent:${jrebel.path} -Drebel.log.stdout=true </argLine> </configuration> </execution> <execution> <id>non-legacy-test</id> <configuration> <argLine> -Xmx1024m -XX:MaxPermSize=512m -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8083 -javaagent:${jrebel.path} -Drebel.log.stdout=true </argLine> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-profile</artifactId> </dependency> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-profile-web</artifactId> </dependency> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-framework-web</artifactId> </dependency> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-framework</artifactId> </dependency> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-framework</artifactId> <version>${project.version}</version><!--$NO-MVN-MAN-VER$--> <classifier>tests</classifier> </dependency> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-admin-module</artifactId> </dependency> <dependency> <groupId>org.broadleafcommerce</groupId> <artifactId>broadleaf-common</artifactId> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> </dependency> <dependency> <groupId>com.icegreen</groupId> <artifactId>greenmail</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <type>jar</type> <classifier>jdk15</classifier> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> </dependency> </dependencies> </project>