Edit C:\Users\Admin\.m2\repository\org\dspace\dspace-oai\6.2\dspace-oai-6.2.pom
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>dspace-oai</artifactId> <packaging>war</packaging> <name>DSpace OAI-PMH</name> <description>DSpace OAI-PMH Web Application and API</description> <parent> <artifactId>dspace-parent</artifactId> <groupId>org.dspace</groupId> <version>6.2</version> <relativePath>..</relativePath> </parent> <properties> <!-- This is the path to the root [dspace-src] directory. --> <root.basedir>${basedir}/..</root.basedir> <spring.version>3.2.5.RELEASE</spring.version> <xoai.version>3.2.10</xoai.version> <jtwig.version>2.0.1</jtwig.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <attachClasses>true</attachClasses> <!-- In version 2.1-alpha-1, this was incorrectly named warSourceExcludes --> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes> <!-- Filter the web.xml (needed for IDE compatibility/debugging) --> <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors> </configuration> <executions> <execution> <phase>prepare-package</phase> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes> <exclude>src/main/webapp/**</exclude> <exclude>**/*.xsl</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>oracle-support</id> <activation> <property> <name>db.name</name> <value>oracle</value> </property> </activation> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <!-- OAI Data Provider Framework --> <dependency> <groupId>org.dspace</groupId> <artifactId>xoai</artifactId> <version>${xoai.version}</version> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </exclusion> <exclusion> <!--Hard pinned below.--> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </exclusion> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> </exclusions> </dependency> <!-- Java Injection and MVC --> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <!-- Templating Engine --> <dependency> <groupId>com.lyncode</groupId> <artifactId>jtwig-spring</artifactId> <version>${jtwig.version}</version> <exclusions> <exclusion> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </exclusion> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> </exclusions> </dependency> <!-- Internal --> <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-api</artifactId> </dependency> <!-- Solr (Datasource) --> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> <exclusions> <exclusion> <groupId>org.codehaus.woodstox</groupId> <artifactId>wstx-asl</artifactId> </exclusion> </exclusions> </dependency> <!-- Web API --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- Logging --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>runtime</scope> </dependency> <!-- Utilities --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> </dependency> <dependency> <groupId>com.lyncode</groupId> <artifactId>builder-commons</artifactId> <version>1.0.2</version> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.lyncode</groupId> <artifactId>test-support</artifactId> <version>1.0.3</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.lyncode</groupId> <artifactId>builder-commons</artifactId> </exclusion> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.parboiled</groupId> <artifactId>parboiled-core</artifactId> <version>1.1.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlmatchers</groupId> <artifactId>xml-matchers</artifactId> <version>0.10</version> <scope>test</scope> </dependency> </dependencies> <developers> <developer> <name>DSpace @ Lyncode</name> <email>dspace@lyncode.com</email> <organization>Lyncode</organization> <organizationUrl>http://www.lyncode.com</organizationUrl> </developer> <developer> <id>helix84</id> <name>Ivan Másar</name> <email>helix84@centrum.sk</email> </developer> <developer> <name>Ariel J. Lira</name> <email>arieljlira@gmail.com</email> <organization>SeDiCI</organization> <organizationUrl>http://sedici.unlp.edu.ar</organizationUrl> </developer> </developers> </project>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de