refs #2358: Remove reflections dependency from accounting-lib
https://support.d4science.org/issues/2358 git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-lib@124715 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
34df63030e
commit
66cafac399
7
pom.xml
7
pom.xml
|
@ -10,7 +10,7 @@
|
|||
|
||||
<groupId>org.gcube.accounting</groupId>
|
||||
<artifactId>accounting-lib</artifactId>
|
||||
<version>2.1.0-SNAPSHOT</version>
|
||||
<version>2.2.0-SNAPSHOT</version>
|
||||
<name>Accounting Library</name>
|
||||
<description>Accounting Library</description>
|
||||
<packaging>jar</packaging>
|
||||
|
@ -63,11 +63,6 @@
|
|||
<version>1.7.5</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.reflections</groupId>
|
||||
<artifactId>reflections</artifactId>
|
||||
<version>0.9.10</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Test Dependency -->
|
||||
<dependency>
|
||||
|
|
|
@ -7,6 +7,8 @@ import java.util.HashMap;
|
|||
import java.util.Map;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.gcube.accounting.datamodel.aggregation.AggregatedServiceUsageRecord;
|
||||
import org.gcube.accounting.datamodel.usagerecords.ServiceUsageRecord;
|
||||
import org.gcube.common.scope.api.ScopeProvider;
|
||||
import org.gcube.documentstore.persistence.PersistenceBackendFactory;
|
||||
|
||||
|
@ -21,7 +23,9 @@ public class AccountingPersistenceFactory {
|
|||
protected final static Map<String, AccountingPersistence> persistences;
|
||||
|
||||
static {
|
||||
persistences = new HashMap<String, AccountingPersistence>();
|
||||
persistences = new HashMap<String, AccountingPersistence>();
|
||||
PersistenceBackendFactory.addRecordPackage(ServiceUsageRecord.class.getPackage());
|
||||
PersistenceBackendFactory.addRecordPackage(AggregatedServiceUsageRecord.class.getPackage());
|
||||
}
|
||||
|
||||
public static void setFallbackLocation(String path){
|
||||
|
|
Loading…
Reference in New Issue