Skip to content

Commit

Permalink
0004279: Remove JAR files that are not used as often to download
Browse files Browse the repository at this point in the history
separately
  • Loading branch information
erilong committed Apr 29, 2020
1 parent ab87ecc commit e28c21e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Expand Up @@ -3,7 +3,7 @@ bigquery=com.fasterxml.jackson.core:jackson-core:2.10.2, com.google.api:api-comm
cassandra=com.datastax.cassandra:cassandra-driver-core:3.1.4
db2=jdbc.db2:db2jcc:9.7, net.sf.jt400:jt400:9.7
derby=org.apache.derby:derby:10.14.2.0, org.apache.derby:derbytools:10.14.2.0
firebird=org.firebirdsql.jdbc:jaybird-jdk18:3.0.8
firebird=org.firebirdsql.jdbc:jaybird-jdk18:3.0.8, javax.resource:connector-api:1.5
#h2=com.h2database:h2:1.3.176
hana=com.sap.cloud.db.jdbc:ngdbc:2.3.62
hbase=com.google.guava:guava:28.1-android, com.google.protobuf:protobuf-java:2.5.0, com.jcraft:jsch:0.1.42, commons-configuration:commons-configuration:1.6, commons-digester:commons-digester:1.8, commons-el:commons-el:1.0, commons-httpclient:commons-httpclient:3.1, commons-net:commons-net:3.1, com.yammer.metrics:metrics-core:2.2.0, io.netty:netty:3.7.0.Final, io.netty:netty-all:4.0.50.Final, org.apache.avro:avro:1.8.2, org.apache.commons:commons-compress:1.8.1, org.apache.commons:commons-math3:3.1.1, org.apache.directory.api:api-asn1-api:1.0.0-M20, org.apache.directory.api:api-util:1.0.0-M20, org.apache.directory.server:apacheds-i18n:2.0.0-M15, org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M15, org.apache.hadoop:hadoop-annotations:2.5.1, org.apache.hadoop:hadoop-auth:2.5.1, org.apache.hadoop:hadoop-common:2.5.1, org.apache.hadoop:hadoop-mapreduce-client-core:2.5.1, org.apache.hadoop:hadoop-yarn-api:2.5.1, org.apache.hadoop:hadoop-yarn-common:2.5.1, org.apache.hbase:hbase-annotations:1.3.6, org.apache.hbase:hbase-client:1.3.6, org.apache.hbase:hbase-common:1.3.6, org.apache.hbase:hbase-protocol:1.3.6, org.apache.hbase.thirdparty:hbase-shaded-gson:3.0.0, org.apache.htrace:htrace-core:3.1.0-incubating, org.apache.httpcomponents:httpclient:4.5.10, org.apache.httpcomponents:httpcore:4.4.12, org.apache.phoenix:phoenix:5.0.0-HBase-2.0, org.apache.zookeeper:zookeeper:3.4.8, org.jruby.jcodings:jcodings:1.0.8, org.jruby.joni:joni:2.1.2, xmlenc:xmlenc:0.52
Expand Down
Expand Up @@ -68,6 +68,10 @@ public class ModuleManager {

private ModuleManager() throws ModuleException {
modulesDir = joinDirName(AppUtils.getSymHome(), "lib");
File dir = new File(modulesDir);
if (!dir.exists()) {
dir.mkdirs();
}

try (InputStream in = getClass().getResourceAsStream("/symmetric-modules.properties")) {
properties.load(in);
Expand Down

0 comments on commit e28c21e

Please sign in to comment.