Skip to content

Commit 2ff6c9a

Browse files
author
Omnaest
committed
added support for OSS snapshot repository
improved README documentation
1 parent aa273a5 commit 2ff6c9a

File tree

2 files changed

+47
-16
lines changed

2 files changed

+47
-16
lines changed

README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
11
# FASTQ4J
2-
FASTQ4J file format Java Utils
2+
Java Utilities for the FASTQ file format
3+
4+
## Examples
5+
6+
Stream<Sequence> sequences = FASTQUtils.read()
7+
.from(new File("some_file.fastq"))
8+
.getSequences();
9+
10+
# Maven Snapshots
11+
12+
<dependency>
13+
<groupId>org.omnaest.genomics</groupId>
14+
<artifactId>FASTQ4J</artifactId>
15+
<version>0.0.1-SNAPSHOT</version>
16+
</dependency>
17+
18+
<repositories>
19+
<repository>
20+
<id>ossrh</id>
21+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
22+
<snapshots>
23+
<enabled>true</enabled>
24+
</snapshots>
25+
</repository>
26+
</repositories>

pom.xml

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
<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/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>org.omnaest.genomics</groupId>
4-
<artifactId>FASTQ4J</artifactId>
5-
6-
7-
<parent>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.omnaest.genomics</groupId>
6+
<artifactId>FASTQ4J</artifactId>
7+
8+
9+
<parent>
810
<groupId>org.omnaest.utils</groupId>
911
<artifactId>CommonsParent</artifactId>
1012
<version>0.0.1-SNAPSHOT</version>
1113
</parent>
12-
13-
<licenses>
14+
15+
<licenses>
1416
<license>
1517
<name>The Apache Software License, Version 2.0</name>
1618
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
@@ -30,12 +32,17 @@
3032
<java.version>1.8</java.version>
3133
</properties>
3234

33-
<dependencies>
34-
35-
36-
37-
35+
<repositories>
36+
<repository>
37+
<id>ossrh</id>
38+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
39+
<snapshots>
40+
<enabled>true</enabled>
41+
</snapshots>
42+
</repository>
43+
</repositories>
3844

45+
<dependencies>
3946
<dependency>
4047
<groupId>org.omnaest.utils</groupId>
4148
<artifactId>CommonsLangAndIO</artifactId>
@@ -58,5 +65,5 @@
5865
<version>0.0.1-SNAPSHOT</version>
5966
</dependency>
6067
</dependencies>
61-
68+
6269
</project>

0 commit comments

Comments
 (0)