Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
2448d489ad
|
|||
e84c50fcff
|
|||
4b56cfd9d8
|
5
.vscode/extensions.json
vendored
5
.vscode/extensions.json
vendored
@ -1,8 +1,9 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"vscjava.vscode-java-pack",
|
||||
"esbenp.prettier-vscode",
|
||||
"mosapride.zenkaku",
|
||||
"streetsidesoftware.code-spell-checker"
|
||||
"redhat.fabric8-analytics",
|
||||
"streetsidesoftware.code-spell-checker",
|
||||
"vscjava.vscode-java-pack"
|
||||
]
|
||||
}
|
||||
|
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -1,7 +1,7 @@
|
||||
{
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports": true
|
||||
"source.organizeImports": "explicit"
|
||||
},
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
@ -13,5 +13,6 @@
|
||||
"prettier.printWidth": 120,
|
||||
"prettier.singleQuote": true,
|
||||
"prettier.tabWidth": 4,
|
||||
"java.configuration.updateBuildConfiguration": "interactive"
|
||||
"java.configuration.updateBuildConfiguration": "interactive",
|
||||
"java.compile.nullAnalysis.mode": "automatic"
|
||||
}
|
||||
|
@ -17,13 +17,13 @@ mvn package
|
||||
### run by jar
|
||||
|
||||
```shell
|
||||
java -jar ./target/dist/lib/bioformats-imageinfo-1.2.0.jar "[path to image file]"
|
||||
java -jar ./target/dist/lib/bioformats-imageinfo-1.2.2.jar "[path to image file]"
|
||||
```
|
||||
|
||||
### run by fat jar
|
||||
|
||||
```shell
|
||||
java -jar ./target/bioformats-imageinfo-1.2.0-jar-with-dependencies.jar "[path to image file]"
|
||||
java -jar ./target/bioformats-imageinfo-1.2.2-jar-with-dependencies.jar "[path to image file]"
|
||||
```
|
||||
|
||||
## library usage
|
||||
|
12
pom.xml
12
pom.xml
@ -5,13 +5,13 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>jp.riken.neurodata.tools.BioFormatsImageInfo</groupId>
|
||||
<artifactId>bioformats-imageinfo</artifactId>
|
||||
<version>1.2.0</version>
|
||||
<version>1.2.2</version>
|
||||
|
||||
<name>bioformats-imageinfo</name>
|
||||
<url>https://neurodata.riken.jp</url>
|
||||
|
||||
<properties>
|
||||
<bio-formats.version>7.0.0</bio-formats.version>
|
||||
<bio-formats.version>7.1.0</bio-formats.version>
|
||||
<bioformats-imageinfo.mainClass>jp.riken.neurodata.tools.BioFormatsImageInfo</bioformats-imageinfo.mainClass>
|
||||
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
@ -30,7 +30,7 @@
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-nop</artifactId>
|
||||
<version>1.7.30</version>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
@ -39,7 +39,7 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
<version>3.4.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
@ -59,7 +59,7 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>3.6.0</version>
|
||||
<version>3.6.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-dependencies</id>
|
||||
@ -140,7 +140,7 @@
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
<version>8.4.0</version>
|
||||
<version>9.0.9</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
|
Reference in New Issue
Block a user