diff options
author | Martin Stockhammer <martin_s@apache.org> | 2016-12-30 15:35:19 +0100 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2016-12-30 15:35:19 +0100 |
commit | dd311845e13f46062251744f7cc2cfd21e2e5cf4 (patch) | |
tree | 1ff667c2e5c824075c4a539dbe1b08aeb55059ae /archiva-modules/archiva-base | |
parent | dfcef53bf9d32839e280ac46ccb3397d2ce0ba05 (diff) | |
download | archiva-dd311845e13f46062251744f7cc2cfd21e2e5cf4.tar.gz archiva-dd311845e13f46062251744f7cc2cfd21e2e5cf4.zip |
Use JPA as default and only database backendwithout_jdojpa
Remove the JDO dependencies and set the JPA implementation as only
database alternative and default implementation. Uses the same database
as JDO before.
Diffstat (limited to 'archiva-modules/archiva-base')
3 files changed, 17 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-indexer/pom.xml b/archiva-modules/archiva-base/archiva-indexer/pom.xml index 6996bdd96..99b4bc2ac 100644 --- a/archiva-modules/archiva-base/archiva-indexer/pom.xml +++ b/archiva-modules/archiva-base/archiva-indexer/pom.xml @@ -168,6 +168,11 @@ <artifactId>xercesImpl</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> <pluginManagement> diff --git a/archiva-modules/archiva-base/archiva-proxy/pom.xml b/archiva-modules/archiva-base/archiva-proxy/pom.xml index 0cc6cb785..c5ccbdfa0 100644 --- a/archiva-modules/archiva-base/archiva-proxy/pom.xml +++ b/archiva-modules/archiva-base/archiva-proxy/pom.xml @@ -209,6 +209,12 @@ <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build> <plugins> diff --git a/archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/pom.xml b/archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/pom.xml index 1bca20bb3..cfee935fa 100644 --- a/archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/pom.xml +++ b/archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/pom.xml @@ -235,6 +235,12 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>org.hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build> |