-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/ceskaexpedice/kramerius
- Loading branch information
Showing
462 changed files
with
38,717 additions
and
5,595 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
|
||
dependencies { | ||
api project(':rest') | ||
api project(':shared:common') | ||
api project(':processes:import') | ||
api project(':processes:solr-migration') | ||
|
||
|
||
} | ||
|
||
|
17 changes: 17 additions & 0 deletions
17
bridge/src/main/java/cz/incad/kramerius/fedora/impl/CDKRepoModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package cz.incad.kramerius.fedora.impl; | ||
|
||
import com.google.inject.AbstractModule; | ||
import com.google.inject.Scopes; | ||
import com.google.inject.name.Names; | ||
import cz.incad.kramerius.FedoraAccess; | ||
import cz.incad.kramerius.repository.KrameriusRepositoryApi; | ||
|
||
public class CDKRepoModule extends AbstractModule { | ||
|
||
@Override | ||
protected void configure() { | ||
// namapovani fedora access | ||
this.bind(FedoraAccess.class).annotatedWith(Names.named("rawFedoraAccess")).to(FedoraAccessProxyAkubraImpl.class).in(Scopes.SINGLETON); | ||
bind(KrameriusRepositoryApi.class).to(KrameriusRepositoryApiProxyImpl.class); | ||
} | ||
} |
Oops, something went wrong.