revised package development environment.
This commit is contained in:
28
README.md
28
README.md
@ -1,27 +1,27 @@
|
||||
# BioFormatsImageInfo
|
||||
Metadata extraction tool based on Bio-Formats
|
||||
|
||||
### Compile
|
||||
```shell
|
||||
mvn compile
|
||||
```
|
||||
|
||||
### run
|
||||
```shell
|
||||
mvn exec:java -Dexec.mainClass=jp.riken.neurodata.tools.BioFormatsImageInfo -Dexec.args="'[path to image file]'"
|
||||
```
|
||||
|
||||
### make jar package
|
||||
### make package
|
||||
```shell
|
||||
mvn package
|
||||
```
|
||||
|
||||
### run by jar
|
||||
### run
|
||||
```shell
|
||||
java -jar target/bioformats-imageinfo-1.0.0.jar "[path to image file]"
|
||||
./target/dist/bin/bioformats-imageinfo "[path to image file]"
|
||||
```
|
||||
|
||||
### run by class
|
||||
### run by jar
|
||||
```shell
|
||||
java -jar ./target/dist/lib/bioformats-imageinfo-1.0.0.jar "[path to image file]"
|
||||
```
|
||||
|
||||
### run by fat jar
|
||||
```shell
|
||||
java -jar ./target/bioformats-imageinfo-1.0.0-jar-with-dependencies.jar "[path to image file]"
|
||||
```
|
||||
|
||||
### library usage
|
||||
```java
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
Reference in New Issue
Block a user