1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-17 19:51:39 +00:00

Upgrade libraries

This commit is contained in:
jendib
2016-01-29 01:55:59 +01:00
parent 0db4f1643d
commit a0f309c957
20 changed files with 69 additions and 271 deletions

View File

@@ -3,7 +3,7 @@ package com.sismics.docs.core.dao.jpa;
import com.sismics.docs.BaseTransactionalTest;
import com.sismics.docs.core.model.jpa.User;
import com.sismics.docs.core.util.TransactionUtil;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;
/**

View File

@@ -5,8 +5,7 @@ import java.io.InputStream;
import javax.crypto.Cipher;
import javax.crypto.CipherInputStream;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;
import com.google.common.base.Strings;

View File

@@ -11,7 +11,7 @@ import com.google.common.io.Resources;
import com.sismics.docs.core.model.jpa.File;
import com.sismics.util.mime.MimeType;
import junit.framework.Assert;
import org.junit.Assert;
/**
* Test of the file entity utilities.

View File

@@ -1,6 +1,6 @@
package com.sismics.util;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;
/**

View File

@@ -1,6 +1,6 @@
package com.sismics.util;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;
/**

View File

@@ -1,6 +1,6 @@
package com.sismics.util;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;
import java.util.List;

View File

@@ -2,9 +2,13 @@ hibernate.connection.driver_class=org.h2.Driver
hibernate.connection.url=jdbc:h2:mem:docs
hibernate.connection.username=sa
hibernate.connection.password=
hibernate.hbm2ddl.auto=none
hibernate.hbm2ddl.auto=
hibernate.dialect=org.hibernate.dialect.HSQLDialect
hibernate.show_sql=true
hibernate.format_sql=false
hibernate.max_fetch_depth=5
hibernate.cache.use_second_level_cache=false
hibernate.c3p0.min_size=1
hibernate.c3p0.max_size=10
hibernate.c3p0.timeout=0
hibernate.c3p0.max_statements=0