-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from tom-seqera/tiff-library
Add tiff library dependency
- Loading branch information
Showing
6 changed files
with
98 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.nf-core</groupId> | ||
<artifactId>nft-tiff</artifactId> | ||
<name>nft-tiff</name> | ||
<version>0.1.0</version> | ||
<description>An nf-test plugin to test nft-tiff files</description> | ||
<url>https://github.com/nf-core/nft-tiff</url> | ||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>http://www.opensource.org/licenses/mit</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:https://github.com/nf-core/nft-tiff</connection> | ||
<developerConnection>scm:git:ssh://github.com:nf-core/nft-tiff.git</developerConnection> | ||
<url>https://github.com/nf-core/nft-tiff/tree/master</url> | ||
</scm> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.5.2</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<properties> | ||
<maven.compiler.release>${java.version}</maven.compiler.release> | ||
<java.version>11</java.version> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
<maven.compiler.target>${java.version}</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<additionalparam>-Xdoclint:none</additionalparam> | ||
</properties> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
...in/java/nf-core/nf/test/tiff/Methods.java → ...in/java/nf_core/nf/test/tiff/Methods.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
package nf-core.nf.test.tiff; | ||
package nf_core.nf.test.tiff; | ||
|
||
import mil.nga.tiff.TIFFImage; | ||
|
||
/* | ||
* Add your custom methods to nf-test | ||
* | ||
* @author: nf-core | ||
*/ | ||
|
||
public class Methods { | ||
|
||
public static void hello() { | ||
System.out.println("Hello from nft-tiff"); | ||
TIFFImage img = new TIFFImage(); | ||
} | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...a/nf-core/nf/test/tiff/PathExtension.java → ...a/nf_core/nf/test/tiff/PathExtension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
moduleName=nft-tiff | ||
moduleVersion=0.1.0 | ||
moduleAuthors=nf-core | ||
extensionMethods=nf-core.nf.test.tiff.Methods | ||
extensionClasses=nf-core.nf.test.tiff.PathExtension | ||
extensionMethods=nf_core.nf.test.tiff.Methods | ||
extensionClasses=nf_core.nf.test.tiff.PathExtension |