mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
dSpace2
Added the basic structure and played around with the POMs some Added a new 2.0 profile to the base POM git-svn-id: http://scm.dspace.org/svn/repo/trunk@3063 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
25
dspace2/api/pom.xml
Normal file
25
dspace2/api/pom.xml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<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.dspace2</groupId>
|
||||||
|
<artifactId>api</artifactId>
|
||||||
|
<name>DSpace Services API</name>
|
||||||
|
<description>The core services API for dspace</description>
|
||||||
|
<url>http://projects.dspace.org</url>
|
||||||
|
<inceptionYear>Monday, September 1, 2008</inceptionYear>
|
||||||
|
<organization>
|
||||||
|
<name>The DSpace Foundation</name>
|
||||||
|
<url>http://www.dspace.org</url>
|
||||||
|
</organization>
|
||||||
|
<version>2.0-RC1-SNAPSHOT</version><!-- dspace2.version -->
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<!-- should be no dependencies for the API really (except maybe javax) -->
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
41
dspace2/impl/pom.xml
Normal file
41
dspace2/impl/pom.xml
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<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.dspace2</groupId>
|
||||||
|
<artifactId>impl</artifactId>
|
||||||
|
<name>DSpace Services IMPL</name>
|
||||||
|
<description>The implementation of the dSpace 2 services</description>
|
||||||
|
<url>http://projects.dspace.org</url>
|
||||||
|
<inceptionYear>Monday, September 1, 2008</inceptionYear>
|
||||||
|
<organization>
|
||||||
|
<name>The DSpace Foundation</name>
|
||||||
|
<url>http://www.dspace.org</url>
|
||||||
|
</organization>
|
||||||
|
<version>2.0-RC1-SNAPSHOT</version><!-- dspace2.version -->
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-core</artifactId>
|
||||||
|
<version>2.5.5</version>
|
||||||
|
<type>jar</type>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.code.guice</groupId>
|
||||||
|
<artifactId>guice</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<sourceDirectory>src/java/main</sourceDirectory>
|
||||||
|
<testSourceDirectory>src/java/test</testSourceDirectory>
|
||||||
|
<filters>
|
||||||
|
</filters>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
@@ -4,13 +4,13 @@
|
|||||||
<groupId>org.dspace</groupId>
|
<groupId>org.dspace</groupId>
|
||||||
<artifactId>dspace2</artifactId>
|
<artifactId>dspace2</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>2.0-RC1-SNAPSHOT</version>
|
|
||||||
<name>DSpace Parent Project</name>
|
<name>DSpace Parent Project</name>
|
||||||
<url>http://projects.dspace.org</url>
|
<url>http://projects.dspace.org</url>
|
||||||
<organization>
|
<organization>
|
||||||
<name>The DSpace Foundation</name>
|
<name>The DSpace Foundation</name>
|
||||||
<url>http://www.dspace.org</url>
|
<url>http://www.dspace.org</url>
|
||||||
</organization>
|
</organization>
|
||||||
|
<version>2.0-RC1-SNAPSHOT</version><!-- dspace2.version -->
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
@@ -60,16 +60,16 @@
|
|||||||
<activeByDefault>true</activeByDefault>
|
<activeByDefault>true</activeByDefault>
|
||||||
</activation>
|
</activation>
|
||||||
<modules>
|
<modules>
|
||||||
<module>dspace-api</module>
|
<module>api</module>
|
||||||
<module>dspace-core</module>
|
<module>impl</module>
|
||||||
<module>dspace-rest</module>
|
<module>rest</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>core</id>
|
<id>core</id>
|
||||||
<modules>
|
<modules>
|
||||||
<module>dspace-api</module>
|
<module>api</module>
|
||||||
<module>dspace-core</module>
|
<module>impl</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
25
dspace2/rest/pom.xml
Normal file
25
dspace2/rest/pom.xml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<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.dspace2</groupId>
|
||||||
|
<artifactId>rest</artifactId>
|
||||||
|
<name>DSpace Services REST API</name>
|
||||||
|
<description>The core REST API for dspace</description>
|
||||||
|
<url>http://projects.dspace.org</url>
|
||||||
|
<inceptionYear>Monday, September 1, 2008</inceptionYear>
|
||||||
|
<organization>
|
||||||
|
<name>The DSpace Foundation</name>
|
||||||
|
<url>http://www.dspace.org</url>
|
||||||
|
</organization>
|
||||||
|
<version>2.0-RC1-SNAPSHOT</version><!-- dspace2.version -->
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<!-- should be no dependencies for the API really (except maybe javax) -->
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
12
pom.xml
12
pom.xml
@@ -105,7 +105,17 @@
|
|||||||
<module>dspace-sword</module>
|
<module>dspace-sword</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
<profile>
|
||||||
|
<id>2.0</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>false</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<modules>
|
||||||
|
<module>dspace2</module>
|
||||||
|
</modules>
|
||||||
|
</profile>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Use 'mvn package -Pdistributions' to create distributions
|
Use 'mvn package -Pdistributions' to create distributions
|
||||||
to upload to S.F.
|
to upload to S.F.
|
||||||
|
Reference in New Issue
Block a user