Skip to content

Commit

Permalink
feat: ready for reddio-java@0.0.60
Browse files Browse the repository at this point in the history
Signed-off-by: STRRL <im@strrl.dev>
  • Loading branch information
STRRL committed Jun 5, 2023
1 parent 4fae3b1 commit f7e7bb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/reddio-java-release-maven-central.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
path: artifacts
- name: Copy Native Library to Java Project
run: |
mkdir -p output/lib
mkdir -p output/lib
mkdir -p output/lib/darwin-aarch64
mkdir -p output/lib/darwin-x86-64
cp artifacts/libreddio-x86_64-pc-windows-msvc/reddio.dll output/lib/reddio.dll
cp artifacts/libreddio-x86_64-unknown-linux-gnu/libreddio.so output/lib/libreddio.so
cp artifacts/libreddio-aarch64-apple-darwin/libreddio.dylib output/lib/darwin-aarch64/libreddio.dylib
Expand Down
7 changes: 4 additions & 3 deletions reddio-java/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?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/xsd/maven-4.0.0.xsd">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.reddio</groupId>
Expand Down Expand Up @@ -55,7 +56,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<revision>0.0.60-SNAPSHOT</revision>
<revision>0.0.60</revision>
<gpg.keyname/>
<gpg.passphrase/>
<gpg.skip>true</gpg.skip>
Expand Down

0 comments on commit f7e7bb4

Please sign in to comment.