Skip to content

Commit

Permalink
export more packages from jebl
Browse files Browse the repository at this point in the history
  • Loading branch information
walterxie committed Feb 26, 2024
1 parent e6c4193 commit 606d09f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

group = "io.github.linguaphylo"
base.archivesName.set("jebl")
version = "3.1.0"
version = "3.1.1" // -SNAPSHOT

repositories {
mavenCentral()
Expand All @@ -22,8 +22,8 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withSourcesJar()
withJavadocJar()
}
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@
requires java.desktop;
requires java.logging;

exports jebl.evolution.align;
exports jebl.evolution.align.scores;
exports jebl.evolution.alignments;
exports jebl.evolution.characters;
exports jebl.evolution.coalescent;
exports jebl.evolution.distances;
exports jebl.evolution.graphs;
exports jebl.evolution.io;
exports jebl.evolution.parsimony;
exports jebl.evolution.sequences;
exports jebl.evolution.substmodel;
exports jebl.evolution.taxa;
exports jebl.evolution.treemetrics;
exports jebl.evolution.trees;
exports jebl.evolution.treesimulation;
exports jebl.util;
}

0 comments on commit 606d09f

Please sign in to comment.