mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-23 18:03:11 +00:00
99 lines
3.2 KiB
XML
99 lines
3.2 KiB
XML
<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>modules</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>DSpace Addon Modules</name>
|
|
<description>DSpace Addon Modules</description>
|
|
|
|
<parent>
|
|
<groupId>org.dspace</groupId>
|
|
<artifactId>dspace-parent</artifactId>
|
|
<version>3.0-rc2-SNAPSHOT</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<!-- The 'additions' module must *always* be built, as it is included
|
|
as a dependency in most other modules in [src]/dspace/modules -->
|
|
<modules>
|
|
<module>additions</module>
|
|
</modules>
|
|
|
|
<!--
|
|
List of enabled DSpace "addon" / local customization Modules to build/install.
|
|
To disable building of modules, you can use the Maven '-P' commandline
|
|
option along with the profile's id. For example, the following tells
|
|
Maven to *disable* building of 'dspace-oai' and 'dspace-lni' modules:
|
|
'mvn package -P !dspace-oai,!dspace-lni'
|
|
|
|
Also note that the profile IDs below match the profile IDs of the source
|
|
modules in [dspace-src]/pom.xml, so the above command will also disable the
|
|
compiling of the corresponding source module.
|
|
-->
|
|
<profiles>
|
|
<profile>
|
|
<id>dspace-xmlui</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>xmlui</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>dspace-lni</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>lni</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>dspace-jspui</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>jspui</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>dspace-sword</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>sword</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>dspace-swordv2</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>swordv2</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>dspace-solr</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>solr</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>dspace-oai</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>oai</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|