Changeset 2702


Ignore:
Timestamp:
03/15/13 13:51:33 (11 years ago)
Author:
oschonef
Message:
  • add CLARIN Maven repository to POM (for cql-java.jar)
  • remove bundled cql-java.jar
  • update README.txt
Location:
SRUServer/trunk
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • SRUServer/trunk/README.txt

    r2701 r2702  
    1212More Information about SRU/CQL:
    1313  http://www.loc.gov/standards/sru/
    14 Forthcoming standardization of SRU/CQL 2.0 (including description of 1.2)
     14Forthcoming standardization of SRU/CQL 2.0 (includes description of 1.2)
    1515  http://www.loc.gov/standards/sru/oasis/ 
    1616
     
    4343HOW TO BUILD:
    4444-------------
    45 Since the Java CQL parse is not available from a official Maven repository,
    46 you'll need to install it to your local repository using the following commands:
    47 $ cd <place/where/extracted/the/source>/
    48 $ mvn install:install-file  -DgroupId=org.z3950.zing -DartifactId=cql-java \
    49       -Dversion=1.7 -Dpackaging=jar -Dfile=lib/cql-java.jar -DgeneratePom=true
    50      
    51 Then you can build the library with the following command:
     451. Build the library with the following command:
    5246$ mvn package
    5347
    54 And install the artifact in your own repository with the following command:
     482a. Either install the artifact in your own repository with the following
     49    command, if you use Maven for you project:
    5550$ mvn install
    5651
    57 Create Java API documentation for this package with the following command:
    58 $ mvn javadoc:javadoc
     522b. Or use the "sru-server-$VERSION.jar" file created within the
     53    "target/" directory, if you do not use Maven for your project.
     54
     55The Java API documentation is created within the "target/apidocs" directory
     56and is also zipped up into the "sru-server-$VERSION-javadoc.jar" archive.
  • SRUServer/trunk/pom.xml

    r2685 r2702  
    2727        </dependency>
    2828
    29         <!-- Did you read the "README.txt" file and manually install the
    30              artifact in your Maven repository? -->
    3129        <dependency>
    3230            <groupId>org.z3950.zing</groupId>
     
    4341        </dependency>
    4442    </dependencies>
     43
     44    <repositories>
     45        <repository>
     46            <id>clarin</id>
     47            <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
     48            <layout>default</layout>
     49        </repository>
     50    </repositories>
    4551
    4652    <build>
Note: See TracChangeset for help on using the changeset viewer.