mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2025-04-20 05:00:03 +02:00
Fixed build instructions
This commit is contained in:
parent
2372bf786f
commit
70fa714aac
@ -99,6 +99,8 @@ To create an all in one zip file for installation in a ImageJ installation use:
|
|||||||
|
|
||||||
The zip file contains an all in one jar as well as the required native libraries for Windows, Linux and Mac OS X.
|
The zip file contains an all in one jar as well as the required native libraries for Windows, Linux and Mac OS X.
|
||||||
|
|
||||||
|
Note: to be able to build the package you need to have access to the PSI artifact server. Therefore this only works within the PSI networks and if you have a certain maven configuration. An example Maven settings.xml that you can copy to `~/.m2/settings.xml` is located [here](settings.xml).
|
||||||
|
|
||||||
# Acknowledgements
|
# Acknowledgements
|
||||||
This project was inspired by the ImageJ HDF Plugin of Matthias Schlachter Chair of Pattern Recognition and Image Processing, University of Freiburg, Germany ( https://code.google.com/p/imagej-hdf ) .
|
This project was inspired by the ImageJ HDF Plugin of Matthias Schlachter Chair of Pattern Recognition and Image Processing, University of Freiburg, Germany ( https://code.google.com/p/imagej-hdf ) .
|
||||||
It is a complete rewrite of the code with the focus on efficiency and maintainability
|
It is a complete rewrite of the code with the focus on efficiency and maintainability
|
||||||
|
44
settings.xml
Normal file
44
settings.xml
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
<id>central</id>
|
||||||
|
<name>libs-releases</name>
|
||||||
|
<url>http://artifacts.psi.ch/artifactory/libs-releases</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<snapshots />
|
||||||
|
<id>snapshots</id>
|
||||||
|
<name>libs-snapshots</name>
|
||||||
|
<url>http://artifacts.psi.ch/artifactory/libs-snapshots</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
<id>central</id>
|
||||||
|
<name>libs-releases</name>
|
||||||
|
<url>http://artifacts.psi.ch/artifactory/libs-releases</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<snapshots />
|
||||||
|
<id>snapshots</id>
|
||||||
|
<name>libs-releases</name>
|
||||||
|
<url>http://artifacts.psi.ch/artifactory/libs-releases</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
<id>artifactory</id>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
<activeProfiles>
|
||||||
|
<activeProfile>artifactory</activeProfile>
|
||||||
|
</activeProfiles>
|
||||||
|
</settings>
|
Loading…
x
Reference in New Issue
Block a user