Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Issue #94: Move to new Maven build
Browse files Browse the repository at this point in the history
  • Loading branch information
ALRubinger committed Jul 27, 2024
1 parent afbead6 commit 41b195d
Show file tree
Hide file tree
Showing 4 changed files with 673 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Cargo.lock
build/
.gradle/
**/.idea/
**/.DS_Store
5 changes: 4 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@ test-bound: setup
just test-kotlin

test-kotlin: setup
cd bound/kt && mvn clean test
cd bound/kt && mvn clean test

test-kotlin-issue-94: setup
cd bound/kt && mvn -f pom-issue-94.xml clean verify
29 changes: 29 additions & 0 deletions bound/kt/.maven_settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
2<settings>
<servers>
<server>
<id>github</id>
<username>tbd-releases</username>
<password>${env.TBD_RELEASE_GITHUB_PERSONAL_ACCESS_TOKEN}</password>
</server>
<server>
<id>tbd-oss-releases</id>
<username>${env.ARTIFACTORY_USERNAME}</username>
<password>${env.ARTIFACTORY_PASSWORD}</password>
</server>
<server>
<id>tbd-oss-snapshots</id>
<username>${env.ARTIFACTORY_USERNAME}</username>
<password>${env.ARTIFACTORY_PASSWORD}</password>
</server>
<server>
<id>ossrh-snapshots</id>
<username>${env.SONATYPE_USERNAME}</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>
<server>
<id>ossrh-releases</id>
<username>${env.SONATYPE_USERNAME}</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>
</servers>
</settings>
Loading

0 comments on commit 41b195d

Please sign in to comment.