Clean dependencies for bigbluebutton-web.

This commit is contained in:
Ghazi Triki 2017-04-18 17:16:57 +01:00
parent bc898c145a
commit 106dbb3275
3 changed files with 10 additions and 11 deletions

View File

@ -51,16 +51,13 @@ dependencies {
compile 'org.slf4j:jul-to-slf4j:1.7.5@jar'
compile 'org.slf4j:slf4j-api:1.7.5@jar'
compile 'org.apache.commons:commons-lang3:3.1'
compile 'commons-codec:commons-codec:1.3'
compile 'commons-httpclient:commons-httpclient:3.1'
compile 'commons-io:commons-io:1.4'
compile 'com.artofsolving:jodconverter:2.2.1'
compile 'org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:1.0'
compile 'org.openoffice:unoil:3.2.1'
compile 'org.openoffice:ridl:3.2.1'
compile 'org.openoffice:juh:3.2.1'
compile 'org.openoffice:jurt:3.2.1'
compile 'org.openoffice:unoil:3.2.1'
compile 'org.openoffice:ridl:3.2.1'
compile 'org.openoffice:juh:3.2.1'
compile 'org.openoffice:jurt:3.2.1'
compile 'org.codehaus.groovy:groovy-all:1.6.3'
****/

View File

@ -33,15 +33,17 @@ import java.util.SortedSet;
import java.util.TreeSet;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.lang3.RandomStringUtils;
import org.apache.commons.lang3.StringUtils;
import org.bigbluebutton.api.domain.Meeting;
import org.bigbluebutton.api.util.ParamsUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;
public class ParamsProcessorUtil {
private static Logger log = LoggerFactory.getLogger(ParamsProcessorUtil.class);