Skip to content

Commit

Permalink
Merge pull request #100 from ge-high-assurance/ji/add-guava
Browse files Browse the repository at this point in the history
Provide guava to satisfy Strings reference after Jena bump.
  • Loading branch information
pauls4GE authored Aug 9, 2023
2 parents 579dd6d + 86ce558 commit 70e57fe
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/rack/rack.plugin/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Require-Bundle: com.ge.research.jena,
com.ge.research.sadl.ui,
com.ge.research.sadl.xtextgenerator,
com.google.gson,
com.google.guava,
com.google.inject,
de.jcup.yamleditor,
org.apache.commons.collections,
Expand Down Expand Up @@ -83,7 +84,6 @@ Bundle-ClassPath: .,
lib/jena-iri.jar,
lib/jena-rdfconnection.jar,
lib/jena-shacl.jar,
lib/jena-shaded-guava.jar,
lib/jena-shex.jar,
lib/json-schema-validator.jar,
lib/json-simple.jar,
Expand Down
1 change: 0 additions & 1 deletion tools/rack/rack.plugin/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ bin.includes = .,\
lib/jena-iri.jar,\
lib/jena-rdfconnection.jar,\
lib/jena-shacl.jar,\
lib/jena-shaded-guava.jar,\
lib/jena-shex.jar,\
lib/json-schema-validator.jar,\
lib/json-simple.jar,\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
import com.ge.research.rack.views.RackPreferencePage;
import com.ge.research.semtk.services.client.RestClientConfig;
import com.ge.research.semtk.services.client.UtilityClient;
import com.google.common.base.Strings;

import org.apache.commons.io.FilenameUtils;
import org.apache.jena.ext.com.google.common.base.Strings;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void createPartControl(Composite parent) {
final ScrolledComposite sc = new ScrolledComposite(parent, SWT.H_SCROLL | SWT.V_SCROLL);
final Composite composite = new Composite(sc, SWT.NONE);
sc.setContent(composite);

GridLayout layout = new GridLayout();
layout.numColumns = 1;
layout.verticalSpacing = 10;
Expand Down
1 change: 1 addition & 0 deletions tools/rack/rack.targetplatform/rack.targetplatform.target
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="false" type="InstallableUnit">
<unit id="com.google.gson" version="0.0.0"/>
<unit id="com.google.guava" version="0.0.0"/>
<unit id="com.google.inject" version="0.0.0"/>
<unit id="org.apache.commons.collections" version="0.0.0"/>
<unit id="org.apache.commons.csv" version="0.0.0"/>
Expand Down

0 comments on commit 70e57fe

Please sign in to comment.