dspace-jspui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dspace</groupId> <artifactId>dspace-jspui</artifactId> <version>6.4</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.dspace</groupId> <artifactId>dspace-jspui</artifactId> <name>DSpace JSP-UI</name> <packaging>war</packaging> <description>DSpace JSP Based Webapplication</description> <!-- A Parent POM that Maven inherits DSpace Default POM attributes from. --> <parent> <groupId>org.dspace</groupId> <artifactId>dspace-parent</artifactId> <version>6.4</version> <relativePath>..</relativePath> </parent> <properties> <!-- This is the path to the root [dspace-src] directory. --> <root.basedir>${basedir}/..</root.basedir> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <attachClasses>true</attachClasses> <!-- In version 2.1-alpha-1, this was incorrectly named warSourceExcludes --> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes> <!-- Filter the web.xml (needed for IDE compatibility/debugging) --> <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors> </configuration> <executions> <execution> <phase>prepare-package</phase> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <!--Exclude license check for JSPUI files which don't need it--> <excludes> <exclude>**/META-INF/**</exclude> <exclude>**/fmt.tld</exclude> <exclude>**/robots.txt</exclude> <exclude>**/readme*</exclude> <exclude>**/scriptaculous/**</exclude> <exclude>**/jquery*</exclude> <exclude>**/bootstrap/**</exclude> <exclude>**/fonts/**</exclude> <exclude>**/resumable.js</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>oracle-support</id> <activation> <property> <name>db.name</name> <value>oracle</value> </property> </activation> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-api</artifactId> </dependency> <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-api-lang</artifactId> </dependency> <dependency> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.mcavallo</groupId> <artifactId>opencloud</artifactId> <version>0.3</version> </dependency> </dependencies> </project>