Code Search for Developers
 
 
  

pom.xml from DSpace at Krugle


Show pom.xml syntax highlighted


<?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-oai</artifactId>
   <packaging>war</packaging>
   <name>DSpace :: OAI Web Application</name>
   <description>DSpace OAI Service Provider Webapplication</description>
   <url>http://projects.dspace.org/dspace-oai</url>

   <!-- 
      A Parent POM that Maven inherits DSpace Default 
      POM atrributes from. 
   -->
   <parent>
      <groupId>org.dspace</groupId>
      <artifactId>dspace-pom</artifactId>
      <version>1.5-SNAPSHOT</version>
      <relativePath>../dspace-pom</relativePath>
   </parent>
   
   <build>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.0</version>
            <configuration>
               <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>
      </plugins>
   </build>
   
   <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>oaicat</artifactId>
         <version>1.5.48</version>
      </dependency>
   </dependencies>

</project>



See more files for this project here

DSpace

Open Source Digital Asset Management system that enables services for access, provision, stewardship and re-use of digital assets with a focus on educational and research materials

Project homepage: http://sourceforge.net/projects/dspace
Programming language(s): Java,JSP,XML
License: other

  src/
    main/
      java/
        org/
          dspace/
            app/
              didl/
                UUID.java
                UUIDFactory.java
              oai/
                DIDLCrosswalk.java
                DSpaceOAICatalog.java
                DSpaceRecordFactory.java
                LoadDSpaceOAIConfig.java
                METSCrosswalk.java
                OAIDCCrosswalk.java
                PluginCrosswalk.java
                RDFCrosswalk.java
      webapp/
        WEB-INF/
          web.xml
  pom.xml