[DS-618] Update documentation and project files for recent Oracle JDBC driver

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5826 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Graham Triggs
2010-11-11 15:41:21 +00:00
parent 708c208e25
commit 695b839929
16 changed files with 18 additions and 226 deletions

View File

@@ -89,7 +89,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -82,7 +82,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -89,7 +89,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -89,7 +89,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -85,7 +85,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

File diff suppressed because one or more lines are too long

View File

@@ -317,7 +317,7 @@ cp -r [dspace]/webapps/* [tomcat]/webapps
<para> Setting up oracle is a bit different now. You will need still need to get a Copy of the oracle JDBC driver, but instead of copying it into a lib directory you will need to install it into your local Maven repository. You&apos;ll need to download it first from this location: <ulink url="http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html"
>http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html</ulink></para>
<para>
<literal>$ mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle \ -DartifactId=ojdbc14 -Dversion=10.2.0.2.0 -Dpackaging=jar -DgeneratePom=true</literal>
<literal>$ mvn install:install-file -Dfile=ojdbc5.jar -DgroupId=com.oracle \ -DartifactId=ojdbc5 -Dversion=11.2.0.2.0 -Dpackaging=jar -DgeneratePom=true</literal>
</para>
</listitem>
<listitem>

View File

@@ -259,8 +259,8 @@ createdb -U dspace -E UNICODE dspace</pre>
<li>
<p>Setting up oracle is a bit different now. You will need still need to get a Copy of the oracle JDBC driver, but instead of copying it into a lib directory you will need to install it into your local Maven repository. You'll need to download it first from this location: <a href="http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html">http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html</a><br>
<br>
<code>$ mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle \<br>
-DartifactId=ojdbc14 -Dversion=10.2.0.2.0 -Dpackaging=jar -DgeneratePom=true</code><br>
<code>$ mvn install:install-file -Dfile=ojdbc5.jar -DgroupId=com.oracle \<br>
-DartifactId=ojdbc5 -Dversion=11.2.0.2.0 -Dpackaging=jar -DgeneratePom=true</code><br>
</p>
</li>
<li>

View File

@@ -257,7 +257,7 @@ For details on the contents of these separate directory trees, refer to director
<p>You will be prompted for a password for the DSpace database. (This isn't the same as the <em>dspace</em> user's UNIX password.)
<br class="atl-forced-newline" />
<b><em>Oracle</em></b><em>:</em></p></li>
<li>Setting up oracle is a bit different now. You will need still need to get a Copy of the oracle JDBC driver, but instead of copying it into a lib directory you will need to install it into your local Maven repository. You'll need to download it first from this location: <a href="http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html" title="http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html">http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html</a><em>$ mvn install:install-file &#45;Dfile=ojdbc14.jar &#45;DgroupId=com.oracle \ &#45;DartifactId=ojdbc14 &#45;Dversion=10.2.0.2.0 &#45;Dpackaging=jar &#45;DgeneratePom=true</em></li>
<li>Setting up oracle is a bit different now. You will need still need to get a Copy of the oracle JDBC driver, but instead of copying it into a lib directory you will need to install it into your local Maven repository. You'll need to download it first from this location: <a href="http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html" title="http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html">http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html</a><em>$ mvn install:install-file &#45;Dfile=ojdbc5.jar &#45;DgroupId=com.oracle \ &#45;DartifactId=ojdbc5 &#45;Dversion=11.2.0.2.0 &#45;Dpackaging=jar &#45;DgeneratePom=true</em></li>
<li>Create a database for DSpace. Make sure that the character set is one of the Unicode character sets. DSpace uses UTF-8 natively, and it is suggested that the Oracle database use the same character set. Create a user account for DSpace (e.g. <em>dspace</em>,) and ensure that it has permissions to add and remove tables in the database.</li>
<li>Edit the <em>[dspace-source]/dspace/config/dspace.cfg</em> database settings:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">

View File

@@ -65,7 +65,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -95,7 +95,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -102,7 +102,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -90,7 +90,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -118,7 +118,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -480,7 +480,7 @@
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<artifactId>ojdbc5</artifactId>
</dependency>
</dependencies>
</profile>

View File

@@ -560,8 +560,8 @@
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.2.0</version>
<artifactId>ojdbc5</artifactId>
<version>11.2.0.2.0</version>
</dependency>
<dependency>
<groupId>org.dspace</groupId>