Skip to content

Commit

Permalink
HSEARCH-620 updating scope of driver dependencies and improving seper…
Browse files Browse the repository at this point in the history
…aton between required and optional deps
  • Loading branch information
hferentschik committed Nov 5, 2010
1 parent e9e2d14 commit e376134
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions hibernate-search/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
Expand Down
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.2.134</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand Down Expand Up @@ -508,6 +509,7 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -528,6 +530,7 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -548,6 +551,7 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -569,6 +573,7 @@
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.4-701.jdbc4</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -589,6 +594,7 @@
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.4-701.jdbc4</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -609,6 +615,7 @@
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.4-701.jdbc3</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand Down Expand Up @@ -640,6 +647,7 @@
<groupId>com.ibm</groupId>
<artifactId>db2jcc_license_cu</artifactId>
<version>3.1.57</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -665,6 +673,7 @@
<groupId>com.ibm</groupId>
<artifactId>db2jcc_license_cu</artifactId>
<version>3.8.47</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -685,11 +694,13 @@
<groupId>com.ibm</groupId>
<artifactId>db2jcc</artifactId>
<version>3.57.86</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.ibm</groupId>
<artifactId>db2jcc_license_cu</artifactId>
<version>3.57.86</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -711,6 +722,7 @@
<artifactId>ojdbc14</artifactId>
<!-- use the 10g drivers which are surprisingly largely bug free -->
<version>10.0.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -732,6 +744,7 @@
<artifactId>ojdbc14</artifactId>
<!-- use the 10g drivers which are surprisingly largely bug free -->
<version>10.0.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -752,6 +765,7 @@
<groupId>com.oracle</groupId>
<artifactId>ojdbc5</artifactId>
<version>11.1.0.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -772,6 +786,7 @@
<groupId>com.oracle</groupId>
<artifactId>ojdbc5</artifactId>
<version>11.1.0.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -794,6 +809,7 @@
<groupId>com.sybase</groupId>
<artifactId>jconnect</artifactId>
<version>6.0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -815,6 +831,7 @@
<artifactId>msjdbc</artifactId>
<version>2.0.1008.2</version>
<classifier>4</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand All @@ -836,6 +853,7 @@
<artifactId>msjdbc</artifactId>
<version>2.0.1008.2</version>
<classifier>4</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
Expand Down
2 changes: 2 additions & 0 deletions src/main/assembly/dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<excludes>
<exclude>jgroups:jgroups</exclude>
<exclude>org.hibernate.javax.persistence:hibernate-jpa-2.0-api</exclude>
<exclude>org.apache.lucene:lucene-analyzers</exclude>
</excludes>
</dependencySet>

Expand All @@ -80,6 +81,7 @@
<outputDirectory>/dist/lib/optional</outputDirectory>
<scope>test</scope>
<includes>
<include>org.apache.lucene:lucene-analyzers</include>
<include>org.apache.lucene:lucene-snowball</include>
<include>org.apache.lucene:lucene-collation</include>
<include>commons-codec:commons-codec</include>
Expand Down

0 comments on commit e376134

Please sign in to comment.