rice-krad-sampleapp-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kuali.rice</groupId> <artifactId>rice-krad-sampleapp-web</artifactId> <version>2.6.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2005-2017 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.opensource.org/licenses/ecl2.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <name>Rice KRAD Sample Application Web</name> <parent> <artifactId>rice-krad-sampleapp</artifactId> <groupId>org.kuali.rice</groupId> <version>2.6.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>rice-krad-sampleapp-web</artifactId> <packaging>war</packaging> <properties> <web.launch.context.path>/krad-sampleapp</web.launch.context.path> <bootstrap.spring.file>classpath:KradSampleAppBeans.xml</bootstrap.spring.file> <maven.surefire.skip>true</maven.surefire.skip> <war.overlay.pattern.1>WEB-INF/web.xml</war.overlay.pattern.1> <war.overlay.exclude.2>DO_NOT_MATCH_ANYTHING_PATTERN</war.overlay.exclude.2> <!-- csv based JMeter tests result in one graph in Jenkins, we want a graph per test --> <jmeter.excludeJmeterTestFile>**/KRAD.jmx</jmeter.excludeJmeterTestFile> <kuali.testjar.phase>none</kuali.testjar.phase> <kuali.generate.reports>false</kuali.generate.reports> <webapp.working.dir>${project.build.directory}/${project.artifactId}-${project.version}</webapp.working.dir> </properties> <build> <testSourceDirectory>src/it/java</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/META-INF/*.xml</include> </includes> </resource> <resource> <directory>src/it/resources</directory> <filtering>true</filtering> <includes> <include>**/*.xml</include> <include>XML/*.*</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>**/META-INF/*.xml</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <filtering>true</filtering> <!-- this is relative to the pom.xml directory --> <directory>src/main/webapp/</directory> <includes> <include>**/web.xml</include> </includes> </resource> </webResources> <overlays> <overlay> <groupId>${project.groupId}</groupId> <artifactId>rice-web</artifactId> <excludes> <exclude>${war.overlay.exclude.2}</exclude> </excludes> <filtered>false</filtered> </overlay> </overlays> <useCache>true</useCache> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> <version>2.3</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>create-krad-sampleapp-class-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <excludes> <exclude>log4j.properties</exclude> <exclude>META-INF/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.1</version> <executions> <execution> <id>export-krad-sampleapp-class-jar</id> <phase>install</phase> <goals> <goal>install-file</goal> </goals> <configuration> <file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <packaging>jar</packaging> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>kuali-release</id> <properties> <war.overlay.exclude.2>**/ojdbc*.jar</war.overlay.exclude.2> </properties> </profile> <profile> <id>sauceconnect</id> <properties> <saucelabs.connect.skip>false</saucelabs.connect.skip> <saucelabs.connect.includes> **/*Aft.java </saucelabs.connect.includes> </properties> </profile> <profile> <id>stests</id> <properties> <stests.skip>false</stests.skip> <stests.includes> **/*Aft.java </stests.includes> </properties> </profile> <profile> <id>standalone</id> <properties> <web.launch.context.path>/krad-sampleapp-standalone</web.launch.context.path> <bootstrap.spring.file>classpath:KradSampleAppStandaloneBeans.xml</bootstrap.spring.file> </properties> </profile> <profile> <id>jmeter</id> <activation><activeByDefault>false</activeByDefault></activation> <build> <plugins> <plugin> <groupId>com.lazerycode.jmeter</groupId> <artifactId>jmeter-maven-plugin</artifactId> <configuration> <testFilesDirectory>${jmeter.jMeterTestFile}</testFilesDirectory> <testFilesExcluded> <excludeJmeterTestFile>${jmeter.excludeJmeterTestFile}</excludeJmeterTestFile> </testFilesExcluded> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-krad-sampleapp-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-krms-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-krad-development-tools</artifactId> <version>${project.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-tools-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-web</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-deploy</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-sql</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-xml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-krad-data</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-it-krad</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-it-internal-tools</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-io</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-http</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-websocket</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.saucelabs</groupId> <artifactId>sauce_junit</artifactId> </dependency> <!-- saucelabs transient dependencies that some setups don't pickup --> <dependency> <groupId>com.saucelabs</groupId> <artifactId>sauce_java_common</artifactId> </dependency> <dependency> <groupId>com.saucelabs</groupId> <artifactId>saucerest</artifactId> </dependency> </dependencies> </project>