Changeset 25906


Ignore:
Timestamp:
2012-07-06T15:43:17+12:00 (12 years ago)
Author:
ak19
Message:

One more java class was added to the solr extension's util package and the build.xml file needed to be updated to ensure that file was copied to the right location during the setup process (add-service ant target). Also updated the README.txt

Location:
gs3-extensions/solr/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gs3-extensions/solr/trunk/src/README.txt

    r25903 r25906  
    11README file for Greenstone 3's Solr extension
     2
     3CONTENTS OF THIS README
     4- Acquiring and setting up the Solr extension
     5- Importing and (re-)building a collection with the Solr extension
     6- Running the Solr extension's Jetty server on its own
     7- Some handy manual commands
     8- Adding new Java classes into the Solr extension
    29
    310
     
    95102
    96103
    97 SOME HANDY MANUAL COMMANDS:
     104SOME HANDY MANUAL COMMANDS
    98105The commands expressed below are for Linux, adjust them for Windows
    99106
     
    109116The above posts the solr-jdbm-demo collection's didx (document-level) index folder contents to Solr to be ingested.
    110117
     118
     119ADDING NEW JAVA CLASSES INTO THE SOLR EXTENSION
     120
     1211. Create the Java classes and place them into their package within the ext/solr location.
     122
     1232. Adjust the ant build file in the solr extension (ext/solr/build.xml) to take these java source files into account during the setup process that takes place when the ant target 'add-service' is executed. The relevant portions of this build.xml file are likely to be the property 'java-service-files' and the property 'java-util-files'.
     124
  • gs3-extensions/solr/trunk/src/build.xml

    r25900 r25906  
    3434           
    3535  <property name="java-util-files"
    36             value="SolrQueryWrapper.java           
    37            SolrQueryResult.java"/>             
     36            value="SolrFacetWrapper.java
     37            SolrQueryWrapper.java           
     38            SolrQueryResult.java"/>           
    3839 
    3940  <property name="property-files"
Note: See TracChangeset for help on using the changeset viewer.