mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 18:14:26 +00:00
Complete JSPUI reorganization.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2569 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
105
dspace-jspui/dspace-jspui-api/pom.xml
Normal file
105
dspace-jspui/dspace-jspui-api/pom.xml
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
<?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>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-jspui-api</artifactId>
|
||||||
|
<name>DSpace JSPUI :: API and Implementation</name>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
<url>http://projects.dspace.org/dspace-jspui/dspace-jspui-api</url>
|
||||||
|
<description>Libraries for DSpace JSP Based Webapplication</description>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
A Parent POM that Maven inherits DSpace Default
|
||||||
|
POM atrributes from.
|
||||||
|
-->
|
||||||
|
<parent>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-jspui</artifactId>
|
||||||
|
<version>1.5-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>maven.dspace.org/snapshot</id>
|
||||||
|
<name>DSpace Maven Snapshot Repository</name>
|
||||||
|
<url>http://maven.dspace.org/snapshot</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>maven.dspace.org/snapshot</id>
|
||||||
|
<name>DSpace Maven Repository</name>
|
||||||
|
<url>http://maven.dspace.org/snapshot</url>
|
||||||
|
<releases>
|
||||||
|
<updatePolicy>never</updatePolicy>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<updatePolicy>always</updatePolicy>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The Subversion repository location is used by Continuum to update against
|
||||||
|
when changes have occured, this spawns a new build cycle and releases snapshots
|
||||||
|
into the snapshot repository below.
|
||||||
|
-->
|
||||||
|
<scm>
|
||||||
|
<connection>
|
||||||
|
scm:svn:http://dspace.svn.sourceforge.net/svnroot/dspace/branches/dspace-1_5_x/dspace-jspui/dspace-jspui-api
|
||||||
|
</connection>
|
||||||
|
<developerConnection>
|
||||||
|
scm:svn:https://dspace.svn.sourceforge.net/svnroot/dspace/branches/dspace-1_5_x/dspace-jspui/dspace-jspui-api
|
||||||
|
</developerConnection>
|
||||||
|
<url>
|
||||||
|
http://dspace.svn.sourceforge.net/viewvc/dspace/branches/dspace-1_5_x/dspace-jspui/dspace-jspui-api
|
||||||
|
</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-api</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>language-packs</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-validator</groupId>
|
||||||
|
<artifactId>commons-validator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.servlet</groupId>
|
||||||
|
<artifactId>servlet-api</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.servlet</groupId>
|
||||||
|
<artifactId>jstl</artifactId>
|
||||||
|
<version>1.1.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>taglibs</groupId>
|
||||||
|
<artifactId>standard</artifactId>
|
||||||
|
<version>1.1.2</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
|
211
dspace-jspui/dspace-jspui-webapp/pom.xml
Normal file
211
dspace-jspui/dspace-jspui-webapp/pom.xml
Normal file
@@ -0,0 +1,211 @@
|
|||||||
|
<?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>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-jspui-webapp</artifactId>
|
||||||
|
<name>DSpace JSPUI :: Web Application Resources</name>
|
||||||
|
<packaging>war</packaging>
|
||||||
|
<url>http://projects.dspace.org/dspace-jspui/dspace-jspui-webapp</url>
|
||||||
|
<description>DSpace JSP Based Webapplication</description>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
A Parent POM that Maven inherits DSpace Default
|
||||||
|
POM atrributes from.
|
||||||
|
-->
|
||||||
|
<parent>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-jspui</artifactId>
|
||||||
|
<version>1.5-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>maven.dspace.org/snapshot</id>
|
||||||
|
<name>DSpace Maven Snapshot Repository</name>
|
||||||
|
<url>http://maven.dspace.org/snapshot</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>maven.dspace.org/snapshot</id>
|
||||||
|
<name>DSpace Maven Repository</name>
|
||||||
|
<url>http://maven.dspace.org/snapshot</url>
|
||||||
|
<releases>
|
||||||
|
<updatePolicy>never</updatePolicy>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<updatePolicy>always</updatePolicy>
|
||||||
|
<checksumPolicy>fail</checksumPolicy>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The Subversion repository location is used by Continuum to update against
|
||||||
|
when changes have occured, this spawns a new build cycle and releases snapshots
|
||||||
|
into the snapshot repository below.
|
||||||
|
-->
|
||||||
|
<scm>
|
||||||
|
<connection>
|
||||||
|
scm:svn:http://dspace.svn.sourceforge.net/svnroot/dspace/branches/dspace-1_5_x/dspace-jspui/dspace-jspui-webapp
|
||||||
|
</connection>
|
||||||
|
<developerConnection>
|
||||||
|
scm:svn:https://dspace.svn.sourceforge.net/svnroot/dspace/branches/dspace-1_5_x/dspace-jspui/dspace-jspui-webapp
|
||||||
|
</developerConnection>
|
||||||
|
<url>
|
||||||
|
http://dspace.svn.sourceforge.net/viewvc/dspace/branches/dspace-1_5_x/dspace-jspui/dspace-jspui-webapp
|
||||||
|
</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<archiveClasses>false</archiveClasses>
|
||||||
|
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
|
||||||
|
<webResources>
|
||||||
|
<resource>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
<directory>${basedir}/src/main/webapp</directory>
|
||||||
|
<includes>
|
||||||
|
<include>WEB-INF/web.xml</include>
|
||||||
|
</includes>
|
||||||
|
</resource>
|
||||||
|
</webResources>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>prepare-package</phase>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- Secondary Artifact: Skinny war. -->
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<descriptorRefs>
|
||||||
|
<descriptorRef>skinny</descriptorRef>
|
||||||
|
</descriptorRefs>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>attached</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.dspace.maven.plugins</groupId>
|
||||||
|
<artifactId>dspace-assembly-plugin</artifactId>
|
||||||
|
<version>SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<!--
|
||||||
|
when activated a dspace.config configuration
|
||||||
|
file location passed on the commandline
|
||||||
|
(-Ddspace.config=...) can be passed through
|
||||||
|
to be used as a filter source by projects for
|
||||||
|
tasks such as updating the ${dspace.dir} in
|
||||||
|
web.xml etc.
|
||||||
|
-->
|
||||||
|
<profile>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>dspace.config</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<filters>
|
||||||
|
<filter>${dspace.config}</filter>
|
||||||
|
</filters>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>oracle-support</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>db.name</name>
|
||||||
|
<value>oracle</value>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle</groupId>
|
||||||
|
<artifactId>ojdbc14</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>postgres-support</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>!db.name</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>postgresql</groupId>
|
||||||
|
<artifactId>postgresql</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-api</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>language-packs</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.dspace</groupId>
|
||||||
|
<artifactId>dspace-jspui-api</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.servlet</groupId>
|
||||||
|
<artifactId>servlet-api</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.servlet</groupId>
|
||||||
|
<artifactId>jstl</artifactId>
|
||||||
|
<version>1.1.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>taglibs</groupId>
|
||||||
|
<artifactId>standard</artifactId>
|
||||||
|
<version>1.1.2</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
|
Reference in New Issue
Block a user