Skip to content

Commit

Permalink
use java matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
fschlag committed Apr 21, 2024
1 parent a6518b9 commit 0faf74f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pride-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Java CI with Maven
name: PriDE CI

on:
push:
Expand Down
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ See doc/PriDE-History.html for release notes!

## Building PriDE

PriDE is a Maven-based project. The JUnit-Tests can be executed against different types of databases.
At the moment the following types of databases are supported and actively tested on [Travis CI](https://travis-ci.org/j-pride/pride.pm):
PriDE is a Maven-based project. The tests can be executed using different types of databases.
Currently, the following databases are supported:

* HSQLDB (Version 2.x)
* SQLite (Version 3.x)
Expand All @@ -31,16 +31,16 @@ To build PriDE _and_ execute all tests, you have to specify a database to run th
mvn package -Duser.name=[mysql,hsql,mariadb,oracle,postgres,sqlite,db2]

To just build PriDE without execute any tests run

mvn package -DskipTests

Afterwards the built jar can be found in `target/pride-<Major-Version>-SNAPSHOT-<Git-Commit-ID>.jar`

### Preperations needed for Oracle
### Preparations needed for Oracle

If you plan to use an Oracle database, you have to manually install the JDBC driver into your local maven repository.
Download the ojdbc8.jar from the [Oracle Technology Network](http://www.oracle.com/technetwork/database/features/jdbc/jdbc-ucp-122-3110062.html).
Afterwards you can install it into your local repository by executing the following command
Afterward you can install it into your local repository by executing the following command

mvn install:install-file -DgroupId=com.oracle.jdbc -DartifactId=ojdbc8 -Dversion=12.2.0.1 -Dpackaging=jar -Dfile=ojdbc8.jar -DgeneratePom=true

0 comments on commit 0faf74f

Please sign in to comment.