Skip to content

Commit

Permalink
Add github packages as Maven snapshot repository to access jackcess s…
Browse files Browse the repository at this point in the history
…napshots
  • Loading branch information
spannm committed Feb 22, 2024
1 parent fa2b002 commit 33ce2dd
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@
</site>
</distributionManagement>

<repositories>
<repository>
<id>github-jackcess</id>
<name>${developerId} github packages</name>
<url>https://maven.pkg.github.com/${developerId}/${dep.jackcess.artifcactId}</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

Expand All @@ -92,6 +103,7 @@

<developerId>spannm</developerId>

<dep.jackcess.artifcactId>jackcess</dep.jackcess.artifcactId>
<dep.jackcess.version>5.0.0-SNAPSHOT</dep.jackcess.version>

<dep.hsqldb.version>2.7.1</dep.hsqldb.version>
Expand Down Expand Up @@ -142,7 +154,7 @@

<dependency>
<groupId>io.github.spannm</groupId>
<artifactId>jackcess</artifactId>
<artifactId>${dep.jackcess.artifcactId}</artifactId>
<version>${dep.jackcess.version}</version>
</dependency>

Expand Down

0 comments on commit 33ce2dd

Please sign in to comment.