Skip to content

Commit

Permalink
update readme; bump to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codeforkjeff committed Jan 17, 2017
1 parent 6e8dbec commit a60a396
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ General Features

- [VIAF](http://viaf.org) - Virtual International Authority File
- [ORCID](http://orcid.org) - digital identifiers for researchers
- Any [Apache Solr](https://lucene.apache.org/solr/) collection
- more to come (if you can contribute, please submit pull requests!)

* Good performance (uses threads; stable memory usage; caches results)
Expand All @@ -48,6 +49,13 @@ ORCID Data Source Features

* It works!

Solr Data Source Features
-------------------------

* Any Apache Solr collection can be used as a data source. See the
sample commented-out lines in the `conciliator.properties` file for
more details.

Running Conciliator on Your Own Computer
----------------------------------------

Expand All @@ -61,7 +69,7 @@ build the .jar file using maven.
Run this command:

```
java -jar conciliator-1.0.3.jar
java -jar conciliator-2.0.0.jar
```

That's it! You should see some messages as the application starts
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.codefork.conciliator</groupId>
<artifactId>conciliator</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
<packaging>jar</packaging>

<name>conciliator</name>
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# the JVM from having to dynamically allocate memory, which takes time.
# -Xms128m -Xmx128m

java -XX:+HeapDumpOnOutOfMemoryError -Xms128m -Xmx128m -Dlogging.level.com.codefork.refine=DEBUG -jar target/conciliator-1.0.3.jar
java -XX:+HeapDumpOnOutOfMemoryError -Xms128m -Xmx128m -Dlogging.level.com.codefork.refine=DEBUG -jar target/conciliator-2.0.0.jar

0 comments on commit a60a396

Please sign in to comment.