DS-1587 - Commit .gitignore and .gitattributes. Fix line endings in several POMs

This commit is contained in:
Tim Donohue
2013-06-25 16:43:44 -05:00
parent f377bac528
commit 553b242cbd
12 changed files with 968 additions and 931 deletions

14
.gitattributes vendored Normal file
View File

@@ -0,0 +1,14 @@
# Auto detect text files and perform LF normalization
* text=auto
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

23
.gitignore vendored Normal file
View File

@@ -0,0 +1,23 @@
## Ignore the MVN compiled output directories from version tracking
target/
## Ignore project files created by Eclipse
.settings/
.project
.classpath
## Ignore project files created by IntelliJ IDEA
*.iml
*.ipr
*.iws
.idea/
## Ignore project files created by NetBeans
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
META-INF/

View File

@@ -1,113 +1,113 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging> <packaging>jar</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-provider</artifactId> <artifactId>dspace-discovery-provider</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Discovery :: Discovery Provider Library</name> <name>DSpace Discovery :: Discovery Provider Library</name>
<description> <description>
Build Information Build Information
$Id: pom.xml 5367 2010-09-30 00:30:11Z mdiggory $ $Id: pom.xml 5367 2010-09-30 00:30:11Z mdiggory $
$URL: https://scm.dspace.org/svn/repo/modules/dspace-discovery/trunk/provider/pom.xml $ $URL: https://scm.dspace.org/svn/repo/modules/dspace-discovery/trunk/provider/pom.xml $
</description> </description>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery</artifactId> <artifactId>dspace-discovery</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-api</artifactId> <artifactId>dspace-api</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-httpclient</groupId> <groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId> <artifactId>commons-httpclient</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.cocoon</groupId> <groupId>org.apache.cocoon</groupId>
<artifactId>cocoon-maven-plugin</artifactId> <artifactId>cocoon-maven-plugin</artifactId>
<version>1.0.0-M2</version> <version>1.0.0-M2</version>
<executions> <executions>
<execution> <execution>
<id>prepare</id> <id>prepare</id>
<phase>compile</phase> <phase>compile</phase>
<goals> <goals>
<goal>prepare</goal> <goal>prepare</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId> <artifactId>maven-jetty-plugin</artifactId>
<version>6.1.7</version> <version>6.1.7</version>
<configuration> <configuration>
<connectors> <connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8888</port> <port>8888</port>
<maxIdleTime>30000</maxIdleTime> <maxIdleTime>30000</maxIdleTime>
</connector> </connector>
</connectors> </connectors>
<webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory> <webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory>
<contextPath>/</contextPath> <contextPath>/</contextPath>
<systemProperties> <systemProperties>
<systemProperty> <systemProperty>
<name>org.apache.cocoon.mode</name> <name>org.apache.cocoon.mode</name>
<value>dev</value> <value>dev</value>
</systemProperty> </systemProperty>
</systemProperties> </systemProperties>
</configuration> </configuration>
</plugin> </plugin>
<!-- <!--
<plugin> <plugin>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.1</version> <version>2.1</version>
<configuration> <configuration>
<archive> <archive>
<manifestEntries> <manifestEntries>
<Cocoon-Block-Name>${pom.artifactId}</Cocoon-Block-Name> <Cocoon-Block-Name>${pom.artifactId}</Cocoon-Block-Name>
</manifestEntries> </manifestEntries>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
--> -->
<plugin> <plugin>
<artifactId>maven-eclipse-plugin</artifactId> <artifactId>maven-eclipse-plugin</artifactId>
<version>2.5</version> <version>2.5</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-provider</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-provider</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-provider scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-provider
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-provider</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-provider</url>
</scm> </scm>
</project> </project>

View File

@@ -1,61 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging> <packaging>jar</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-solr</artifactId> <artifactId>dspace-discovery-solr</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Discovery :: Discovery Solr Implementation</name> <name>DSpace Discovery :: Discovery Solr Implementation</name>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery</artifactId> <artifactId>dspace-discovery</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-provider</artifactId> <artifactId>dspace-discovery-provider</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.solr</groupId> <groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId> <artifactId>solr-solrj</artifactId>
<version>3.3.0</version> <version>3.3.0</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-solr</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-solr</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-solr scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-solr
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-solr</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-solr</url>
</scm> </scm>
</project> </project>

View File

@@ -1,132 +1,132 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging> <packaging>jar</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-xmlui-api</artifactId> <artifactId>dspace-discovery-xmlui-api</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Discovery :: Discovery XMLUI API</name> <name>DSpace Discovery :: Discovery XMLUI API</name>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery</artifactId> <artifactId>dspace-discovery</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-xmlui-api</artifactId> <artifactId>dspace-xmlui-api</artifactId>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>solr-solrj</artifactId> <artifactId>solr-solrj</artifactId>
<groupId>org.apache.solr</groupId> <groupId>org.apache.solr</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- external --> <!-- external -->
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-provider</artifactId> <artifactId>dspace-discovery-provider</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.cocoon</groupId> <groupId>org.apache.cocoon</groupId>
<artifactId>cocoon-maven-plugin</artifactId> <artifactId>cocoon-maven-plugin</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<executions> <executions>
<execution> <execution>
<id>prepare</id> <id>prepare</id>
<phase>compile</phase> <phase>compile</phase>
<goals> <goals>
<goal>prepare</goal> <goal>prepare</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<!-- <!--
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<configuration> <configuration>
<archiveClasses>false</archiveClasses> <archiveClasses>false</archiveClasses>
<attachClasses>true</attachClasses> <attachClasses>true</attachClasses>
<classesClassifier>classes</classesClassifier> <classesClassifier>classes</classesClassifier>
<failOnMissingWebXml>false</failOnMissingWebXml> <failOnMissingWebXml>false</failOnMissingWebXml>
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes> <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>prepare-package</phase> <phase>prepare-package</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
--> -->
<plugin> <plugin>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId> <artifactId>maven-jetty-plugin</artifactId>
<version>6.1.7</version> <version>6.1.7</version>
<configuration> <configuration>
<connectors> <connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8888</port> <port>8888</port>
<maxIdleTime>30000</maxIdleTime> <maxIdleTime>30000</maxIdleTime>
</connector> </connector>
</connectors> </connectors>
<webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory> <webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory>
<contextPath>/</contextPath> <contextPath>/</contextPath>
<systemProperties> <systemProperties>
<systemProperty> <systemProperty>
<name>org.apache.cocoon.mode</name> <name>org.apache.cocoon.mode</name>
<value>dev</value> <value>dev</value>
</systemProperty> </systemProperty>
</systemProperties> </systemProperties>
</configuration> </configuration>
</plugin> </plugin>
<!-- <!--
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<configuration> <configuration>
<archive> <archive>
<index>true</index> <index>true</index>
<manifestEntries> <manifestEntries>
<Cocoon-Block-Name>discovery-xmlui-block</Cocoon-Block-Name> <Cocoon-Block-Name>discovery-xmlui-block</Cocoon-Block-Name>
</manifestEntries> </manifestEntries>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
--> -->
</plugins> </plugins>
</build> </build>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-api</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-api</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-api scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-api
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-api</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-api</url>
</scm> </scm>
</project> </project>

View File

@@ -1,152 +1,152 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>war</packaging> <packaging>war</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-xmlui-webapp</artifactId> <artifactId>dspace-discovery-xmlui-webapp</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Discovery :: Discovery XMLUI Webapp</name> <name>DSpace Discovery :: Discovery XMLUI Webapp</name>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery</artifactId> <artifactId>dspace-discovery</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-xmlui-api</artifactId> <artifactId>dspace-xmlui-api</artifactId>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>solr-solrj</artifactId> <artifactId>solr-solrj</artifactId>
<groupId>org.apache.solr</groupId> <groupId>org.apache.solr</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery-xmlui-api</artifactId> <artifactId>dspace-discovery-xmlui-api</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
</dependency> </dependency>
<!-- external --> <!-- external -->
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.cocoon</groupId> <groupId>org.apache.cocoon</groupId>
<artifactId>cocoon-maven-plugin</artifactId> <artifactId>cocoon-maven-plugin</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<executions> <executions>
<execution> <execution>
<id>prepare</id> <id>prepare</id>
<phase>compile</phase> <phase>compile</phase>
<goals> <goals>
<goal>prepare</goal> <goal>prepare</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<configuration> <configuration>
<archiveClasses>false</archiveClasses> <archiveClasses>false</archiveClasses>
<attachClasses>true</attachClasses> <attachClasses>true</attachClasses>
<classesClassifier>classes</classesClassifier> <classesClassifier>classes</classesClassifier>
<failOnMissingWebXml>false</failOnMissingWebXml> <failOnMissingWebXml>false</failOnMissingWebXml>
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes> <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
<webResources> <webResources>
<resource> <resource>
<filtering>true</filtering> <filtering>true</filtering>
<directory>${basedir}/src/main/webapp</directory> <directory>${basedir}/src/main/webapp</directory>
<includes> <includes>
<include>WEB-INF/web.xml</include> <include>WEB-INF/web.xml</include>
</includes> </includes>
</resource> </resource>
</webResources> </webResources>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>prepare-package</phase> <phase>prepare-package</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId> <artifactId>maven-jetty-plugin</artifactId>
<version>6.1.7</version> <version>6.1.7</version>
<configuration> <configuration>
<connectors> <connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8888</port> <port>8888</port>
<maxIdleTime>30000</maxIdleTime> <maxIdleTime>30000</maxIdleTime>
</connector> </connector>
</connectors> </connectors>
<webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory> <webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory>
<contextPath>/</contextPath> <contextPath>/</contextPath>
<systemProperties> <systemProperties>
<systemProperty> <systemProperty>
<name>org.apache.cocoon.mode</name> <name>org.apache.cocoon.mode</name>
<value>dev</value> <value>dev</value>
</systemProperty> </systemProperty>
</systemProperties> </systemProperties>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>com.mycila.maven-license-plugin</groupId> <groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId> <artifactId>maven-license-plugin</artifactId>
<configuration> <configuration>
<!--Exclude license check for Discovery files which don't need it--> <!--Exclude license check for Discovery files which don't need it-->
<excludes> <excludes>
<exclude>**/*.LICENSE</exclude> <exclude>**/*.LICENSE</exclude>
<exclude>**/jquery*</exclude> <exclude>**/jquery*</exclude>
</excludes> </excludes>
</configuration> </configuration>
</plugin> </plugin>
<!-- <!--
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<configuration> <configuration>
<archive> <archive>
<index>true</index> <index>true</index>
<manifestEntries> <manifestEntries>
<Cocoon-Block-Name>discovery-xmlui-block</Cocoon-Block-Name> <Cocoon-Block-Name>discovery-xmlui-block</Cocoon-Block-Name>
</manifestEntries> </manifestEntries>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
--> -->
</plugins> </plugins>
</build> </build>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-webapp</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-webapp</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-webapp scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-webapp
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-webapp</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery/dspace-discovery-xmlui-webapp</url>
</scm> </scm>
</project> </project>

View File

@@ -1,69 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-discovery</artifactId> <artifactId>dspace-discovery</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Discovery :: Modules</name> <name>DSpace Discovery :: Modules</name>
<parent> <parent>
<artifactId>dspace-parent</artifactId> <artifactId>dspace-parent</artifactId>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<modules> <modules>
<module>dspace-discovery-provider</module> <module>dspace-discovery-provider</module>
<module>dspace-discovery-solr</module> <module>dspace-discovery-solr</module>
<module>dspace-discovery-xmlui-api</module> <module>dspace-discovery-xmlui-api</module>
<module>dspace-discovery-xmlui-webapp</module> <module>dspace-discovery-xmlui-webapp</module>
</modules> </modules>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId> <artifactId>maven-jetty-plugin</artifactId>
<version>6.1.7</version> <version>6.1.7</version>
<configuration> <configuration>
<connectors> <connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8888</port> <port>8888</port>
<maxIdleTime>30000</maxIdleTime> <maxIdleTime>30000</maxIdleTime>
</connector> </connector>
</connectors> </connectors>
<webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory> <webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory>
<contextPath>/</contextPath> <contextPath>/</contextPath>
<systemProperties> <systemProperties>
<systemProperty> <systemProperty>
<name>org.apache.cocoon.mode</name> <name>org.apache.cocoon.mode</name>
<value>dev</value> <value>dev</value>
</systemProperty> </systemProperty>
</systemProperties> </systemProperties>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-discovery</url>
</scm> </scm>
<issueManagement> <issueManagement>
<system>JIRA</system> <system>JIRA</system>
<url>http://jira.dspace.org/jira/browse/DISCOVERY</url> <url>http://jira.dspace.org/jira/browse/DISCOVERY</url>
</issueManagement> </issueManagement>
</project> </project>

View File

@@ -1,43 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging> <packaging>jar</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client-api</artifactId> <artifactId>dspace-sword-client-api</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Sword Client :: Sword Client API</name> <name>DSpace Sword Client :: Sword Client API</name>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client</artifactId> <artifactId>dspace-sword-client</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-api</artifactId> <artifactId>dspace-api</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-api</artifactId> <artifactId>dspace-sword-api</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-api</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-api</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-api scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-api
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-api</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-api</url>
</scm> </scm>
</project> </project>

View File

@@ -1,59 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging> <packaging>jar</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client-xmlui-api</artifactId> <artifactId>dspace-sword-client-xmlui-api</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Sword Client :: Sword Client XMLUI API</name> <name>DSpace Sword Client :: Sword Client XMLUI API</name>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client</artifactId> <artifactId>dspace-sword-client</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-xmlui-api</artifactId> <artifactId>dspace-xmlui-api</artifactId>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>solr-solrj</artifactId> <artifactId>solr-solrj</artifactId>
<groupId>org.apache.solr</groupId> <groupId>org.apache.solr</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- external --> <!-- external -->
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client-api</artifactId> <artifactId>dspace-sword-client-api</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-api <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-api
</connection> </connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-api scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-api
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-api</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-api</url>
</scm> </scm>
</project> </project>

View File

@@ -1,93 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>war</packaging> <packaging>war</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client-xmlui-webapp</artifactId> <artifactId>dspace-sword-client-xmlui-webapp</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Sword Client :: Sword Client XMLUI Webapp</name> <name>DSpace Sword Client :: Sword Client XMLUI Webapp</name>
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client</artifactId> <artifactId>dspace-sword-client</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-xmlui-api</artifactId> <artifactId>dspace-xmlui-api</artifactId>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>solr-solrj</artifactId> <artifactId>solr-solrj</artifactId>
<groupId>org.apache.solr</groupId> <groupId>org.apache.solr</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client-xmlui-api</artifactId> <artifactId>dspace-sword-client-xmlui-api</artifactId>
</dependency> </dependency>
<!-- external --> <!-- external -->
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<configuration> <configuration>
<archiveClasses>false</archiveClasses> <archiveClasses>false</archiveClasses>
<attachClasses>true</attachClasses> <attachClasses>true</attachClasses>
<classesClassifier>classes</classesClassifier> <classesClassifier>classes</classesClassifier>
<failOnMissingWebXml>false</failOnMissingWebXml> <failOnMissingWebXml>false</failOnMissingWebXml>
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes> <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
<webResources> <webResources>
<resource> <resource>
<filtering>true</filtering> <filtering>true</filtering>
<directory>${basedir}/src/main/webapp</directory> <directory>${basedir}/src/main/webapp</directory>
<includes> <includes>
<include>WEB-INF/web.xml</include> <include>WEB-INF/web.xml</include>
</includes> </includes>
</resource> </resource>
</webResources> </webResources>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>prepare-package</phase> <phase>prepare-package</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occured, this spawns a new build cycle against when changes have occured, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection> <connection>
scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-webapp scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-webapp
</connection> </connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-webapp scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-webapp
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-webapp</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client/dspace-sword-client-xmlui-webapp</url>
</scm> </scm>
</project> </project>

View File

@@ -1,41 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-sword-client</artifactId> <artifactId>dspace-sword-client</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<name>DSpace Sword Client</name> <name>DSpace Sword Client</name>
<parent> <parent>
<artifactId>dspace-parent</artifactId> <artifactId>dspace-parent</artifactId>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<modules> <modules>
<module>dspace-sword-client-api</module> <module>dspace-sword-client-api</module>
<module>dspace-sword-client-xmlui-api</module> <module>dspace-sword-client-xmlui-api</module>
<module>dspace-sword-client-xmlui-webapp</module> <module>dspace-sword-client-xmlui-webapp</module>
</modules> </modules>
<!-- <!--
The Subversion repository location is used by Continuum to update The Subversion repository location is used by Continuum to update
against when changes have occurred, this spawns a new build cycle against when changes have occurred, this spawns a new build cycle
and releases snapshots into the snapshot repository below. and releases snapshots into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client</connection>
<developerConnection> <developerConnection>
scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client
</developerConnection> </developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-sword-client</url>
</scm> </scm>
<issueManagement> <issueManagement>
<system>JIRA</system> <system>JIRA</system>
<url>http://jira.dspace.org/jira/browse/SWORD</url> <url>http://jira.dspace.org/jira/browse/SWORD</url>
</issueManagement> </issueManagement>
</project> </project>

View File

@@ -1,168 +1,168 @@
<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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-swordv2</artifactId> <artifactId>dspace-swordv2</artifactId>
<packaging>war</packaging> <packaging>war</packaging>
<name>DSpace SWORD v2 :: Web Application Resources</name> <name>DSpace SWORD v2 :: Web Application Resources</name>
<description>DSpace SWORD v2 Deposit Service Provider Web Application</description> <description>DSpace SWORD v2 Deposit Service Provider Web Application</description>
<url>http://projects.dspace.org/dspace-sword-webapp</url> <url>http://projects.dspace.org/dspace-sword-webapp</url>
<!-- <!--
A Parent POM that Maven inherits DSpace Default A Parent POM that Maven inherits DSpace Default
POM atrributes from. POM atrributes from.
--> -->
<parent> <parent>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-parent</artifactId> <artifactId>dspace-parent</artifactId>
<version>1.8.3-SNAPSHOT</version> <version>1.8.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<!-- <!--
The Subversion repository location is used by Continuum to update against The Subversion repository location is used by Continuum to update against
when changes have occurred, this spawns a new build cycle and releases snapshots when changes have occurred, this spawns a new build cycle and releases snapshots
into the snapshot repository below. into the snapshot repository below.
--> -->
<scm> <scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-swordv2</connection> <connection>scm:svn:http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-swordv2</connection>
<developerConnection>scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-swordv2</developerConnection> <developerConnection>scm:svn:https://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-swordv2</developerConnection>
<url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-swordv2</url> <url>http://scm.dspace.org/svn/repo/branches/dspace-1_8_x/dspace-swordv2</url>
</scm> </scm>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<configuration> <configuration>
<attachClasses>true</attachClasses> <attachClasses>true</attachClasses>
<!-- In version 2.1-alpha-1, this was incorrectly named warSourceExcludes --> <!-- In version 2.1-alpha-1, this was incorrectly named warSourceExcludes -->
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes> <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
<webResources> <webResources>
<resource> <resource>
<filtering>true</filtering> <filtering>true</filtering>
<directory>${basedir}/src/main/webapp</directory> <directory>${basedir}/src/main/webapp</directory>
<includes> <includes>
<include>WEB-INF/web.xml</include> <include>WEB-INF/web.xml</include>
</includes> </includes>
</resource> </resource>
</webResources> </webResources>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>prepare-package</phase> <phase>prepare-package</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<profiles> <profiles>
<!-- <!--
when activated a dspace.config configuration when activated a dspace.config configuration
file location passed on the commandline file location passed on the commandline
(-Ddspace.config=...) can be passed through (-Ddspace.config=...) can be passed through
to be used as a filter source by projects for to be used as a filter source by projects for
tasks such as updating the ${dspace.dir} in tasks such as updating the ${dspace.dir} in
web.xml etc. web.xml etc.
--> -->
<profile> <profile>
<activation> <activation>
<property> <property>
<name>dspace.config</name> <name>dspace.config</name>
</property> </property>
</activation> </activation>
<build> <build>
<filters> <filters>
<filter>${dspace.config}</filter> <filter>${dspace.config}</filter>
</filters> </filters>
</build> </build>
</profile> </profile>
<profile> <profile>
<id>oracle-support</id> <id>oracle-support</id>
<activation> <activation>
<property> <property>
<name>db.name</name> <name>db.name</name>
<value>oracle</value> <value>oracle</value>
</property> </property>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.oracle</groupId> <groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId> <artifactId>ojdbc6</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</profile> </profile>
<profile> <profile>
<id>postgres-support</id> <id>postgres-support</id>
<activation> <activation>
<property> <property>
<name>!db.name</name> <name>!db.name</name>
</property> </property>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>postgresql</groupId> <groupId>postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</profile> </profile>
</profiles> </profiles>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<version>2.3</version> <version>2.3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.swordapp</groupId> <groupId>org.swordapp</groupId>
<artifactId>server</artifactId> <artifactId>server</artifactId>
<version>2.0</version> <version>2.0</version>
<type>jar</type> <type>jar</type>
<classifier>classes</classifier> <classifier>classes</classifier>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.swordapp</groupId> <groupId>org.swordapp</groupId>
<artifactId>server</artifactId> <artifactId>server</artifactId>
<version>2.0</version> <version>2.0</version>
<type>war</type> <type>war</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-api</artifactId> <artifactId>dspace-api</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.googlecode.foresite-toolkit</groupId> <groupId>com.googlecode.foresite-toolkit</groupId>
<artifactId>foresite</artifactId> <artifactId>foresite</artifactId>
<version>0.9</version> <version>0.9</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>log4j</groupId> <groupId>log4j</groupId>
<artifactId>log4j</artifactId> <artifactId>log4j</artifactId>
<version>1.2.15</version> <version>1.2.15</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>jmxtools</artifactId> <artifactId>jmxtools</artifactId>
<groupId>com.sun.jdmk</groupId> <groupId>com.sun.jdmk</groupId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<artifactId>jms</artifactId> <artifactId>jms</artifactId>
<groupId>javax.jms</groupId> <groupId>javax.jms</groupId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<artifactId>jmxri</artifactId> <artifactId>jmxri</artifactId>
<groupId>com.sun.jmx</groupId> <groupId>com.sun.jmx</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.abdera</groupId> <groupId>org.apache.abdera</groupId>
<artifactId>abdera-client</artifactId> <artifactId>abdera-client</artifactId>
<version>1.1.1</version> <version>1.1.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>