Skip to content

Commit 2282e64

Browse files
committed
Fix JitPack version resolution issue
- Replace Maven property placeholders with actual version before build - JitPack doesn't resolve ${dynamodb-toolkit.version} expressions - Use sed to substitute $VERSION from JitPack into both pom.xml files
1 parent b3b8b2c commit 2282e64

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

jitpack.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
jdk:
22
- openjdk21
3+
before_install:
4+
- sed -i "s/\${dynamodb-toolkit.version}/$VERSION/g" pom.xml
5+
- sed -i "s/\${dynamodb-toolkit.version}/$VERSION/g" integration-tests/pom.xml
36
install:
47
- mvn clean compile -DskipTests=true

0 commit comments

Comments
 (0)