ks-lum-ui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kuali.student.lum</groupId> <artifactId>ks-lum-ui</artifactId> <version>2.0.3-cm</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <artifactId>ks-lum-ui</artifactId> <name>KS LUM UI</name> <description>KS Learing Unit Management UI</description> <parent> <groupId>org.kuali.student.lum</groupId> <artifactId>ks-lum</artifactId> <version>2.0.3-cm</version> </parent> <properties> <selenium.pattern>**/selenium/**/*Test.java</selenium.pattern> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <!-- Exclude files from jar required only for testing in hosted mode --> <exclude>META-INF/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>${selenium.pattern}</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>build-codehaus-gwt</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webappDirectory>target/${project.artifactId}-webapp</webappDirectory> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>war</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <configuration> <runTarget>org.kuali.student.lum.lu.ui.main.LUMMain/LUMMain.jsp</runTarget> <module>org.kuali.student.lum.lu.ui.main.LUMMain</module> <localWorkers>2</localWorkers> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> </plugins> </build> <!-- Required dependencies for testing lum-ui --> <dependencies> <dependency> <!-- Jax-ws impl dependency so client isn't created using jaxws bundled w/jdk 1.6, which has problems finding exception beans. --> <groupId>org.kuali.student.core</groupId> <artifactId>ks-cxf</artifactId> <version>${ks.core.version}</version> <type>pom</type> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <scope>runtime</scope> </dependency> <!-- core-impl used to get mock message service impl --> <dependency> <groupId>org.kuali.student.core</groupId> <artifactId>ks-core-impl</artifactId> <version>${ks.core.version}</version> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.4.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <version>${oracle.ojdbc.version}</version> </dependency> <dependency> <groupId>org.kuali.rice</groupId> <artifactId>rice-impl</artifactId> </dependency> <dependency> <groupId>org.kuali.student.core</groupId> <artifactId>ks-standard-sec</artifactId> <version>${ks.core.version}</version> </dependency> </dependencies> </profile> <profile> <id>headless</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>selenium-maven-plugin</artifactId> <version>2.0</version> <executions> <execution> <id>xvfb</id> <phase>initialize</phase> <goals> <goal>xvfb</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>selenium</id> <properties> <selenium.include>${selenium.pattern}</selenium.include> </properties> <build> <plugins> <!-- Setup Selenium browser configuration --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>always</forkMode> <systemPropertyVariables> <selenium.remote>false</selenium.remote> <selenium.browser>firefox</selenium.browser> <selenium.browser.version>7</selenium.browser.version> <selenium.platform>ANY</selenium.platform> <selenium.baseurl>http://dev.ks.kuali.org</selenium.baseurl> </systemPropertyVariables> <includes> <include>${selenium.include}</include> </includes> <excludes> <exclude>NOTHING</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ks-lum-program</artifactId> <version>${project.version}</version> <classifier>sources</classifier> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ks-lum-program</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ks-lum-impl</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>