Skip to content

Commit

Permalink
release n5-utils-0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Pisarev committed Dec 11, 2018
1 parent 54a3672 commit 03d4766
Show file tree
Hide file tree
Showing 16 changed files with 151 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,22 @@ Then add dependencies for the specific components you wish to use.
</dependencies>
```

## N5 Utils Releases
| Version | Date | Source |
| ------- | ---- | ------ |
| **0.0.2** | 11 Dec 2018 | [https://github.com/saalfeldlab/n5-utils/tree/0.0.2] |

### Components
```
<dependencies>
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-utils</artifactId>
<version>${n5-utils.version}</version>
</dependency>
</dependencies>
```

## BigCAT Releases

| Version | Date | Source |
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f18c4030a734bb6f0609f82685e70f60
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f6df9850de7a81d46ffb12a17c0f2958495a4e9f
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
04fbf439b4e11b2d82aa1f556fdd980b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a29ee72dd5abf0666c039feb897b2c5813464e62
Binary file added org/saalfeldlab/n5-utils/0.0.2/n5-utils-0.0.2.jar
Binary file not shown.
1 change: 1 addition & 0 deletions org/saalfeldlab/n5-utils/0.0.2/n5-utils-0.0.2.jar.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
19fad28d0730ede45bd4acc54222ee5e
1 change: 1 addition & 0 deletions org/saalfeldlab/n5-utils/0.0.2/n5-utils-0.0.2.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bdcbf71cb849d816058683f65878f3cfce8873ba
113 changes: 113 additions & 0 deletions org/saalfeldlab/n5-utils/0.0.2/n5-utils-0.0.2.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>pom-scijava</artifactId>
<groupId>org.scijava</groupId>
<version>22.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.saalfeldlab</groupId>
<artifactId>n5-utils</artifactId>
<version>0.0.2</version>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file://${deploy.path}</altDeploymentRepository>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.saalfeldlab.View</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
<filter>
<artifact>sc.fiji</artifact>
<excludes>
<exclude>lenscorrection/NonLinearTransform.class</exclude>
</excludes>
</filter>
</filters>
<artifactSet>
<excludes>
<exclude>*hadoop*</exclude>
<exclude>*spark*</exclude>
<exclude>*scala*</exclude>
</excludes>
</artifactSet>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>saalfeld-lab-maven-repo</id>
<url>https://saalfeldlab.github.io/maven</url>
</repository>
<repository>
<id>imagej.public</id>
<url>https://maven.imagej.net/content/groups/public</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>local-maven-repo</id>
<name>Local Maven Repository</name>
<url>file://${deploy.path}</url>
</repository>
</distributionManagement>
<properties>
<enforcer.skip>true</enforcer.skip>
</properties>
</project>

1 change: 1 addition & 0 deletions org/saalfeldlab/n5-utils/0.0.2/n5-utils-0.0.2.pom.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dd4fd922531a1638e52127a82b622071
1 change: 1 addition & 0 deletions org/saalfeldlab/n5-utils/0.0.2/n5-utils-0.0.2.pom.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e8d2bc6e81d9a91677c8fa5eb2caee282178bd76
12 changes: 12 additions & 0 deletions org/saalfeldlab/n5-utils/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>org.saalfeldlab</groupId>
<artifactId>n5-utils</artifactId>
<versioning>
<release>0.0.2</release>
<versions>
<version>0.0.2</version>
</versions>
<lastUpdated>20181211144648</lastUpdated>
</versioning>
</metadata>
1 change: 1 addition & 0 deletions org/saalfeldlab/n5-utils/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fb1fd34ea6504e3c97745dfea6c9c8aa
1 change: 1 addition & 0 deletions org/saalfeldlab/n5-utils/maven-metadata.xml.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ebb18aeed907e1335b7b5ef587bafd89469343d1

0 comments on commit 03d4766

Please sign in to comment.