File tree Expand file tree Collapse file tree 3 files changed +20
-16
lines changed
Expand file tree Collapse file tree 3 files changed +20
-16
lines changed Original file line number Diff line number Diff line change 3131 with :
3232 java-version : ' 8'
3333 distribution : ' zulu'
34+ cache : ' maven'
35+ cache-dependency-path : ' appose.pom'
3436
3537 - name : Set up uv
3638 run : |
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!--
3+ This POM file is used by bin/test.sh to download and cache
4+ needed JAR files for the Java implementation of Appose.
5+ -->
6+ <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 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
7+ <modelVersion >4.0.0</modelVersion >
8+ <groupId >org.apposed</groupId >
9+ <artifactId >appose-python</artifactId >
10+ <version >0-SNAPSHOT</version >
11+ <dependencies >
12+ <dependency >
13+ <groupId >org.apposed</groupId >
14+ <artifactId >appose</artifactId >
15+ <version >RELEASE</version >
16+ </dependency >
17+ </dependencies >
18+ </project >
Original file line number Diff line number Diff line change @@ -13,23 +13,7 @@ cd "$dir/.."
1313if [ ! -d target/dependency ]
1414then
1515 echo " ==> Installing appose-java..."
16- mkdir -p target
17- echo ' <?xml version="1.0" encoding="UTF-8"?>
18- <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
19- <modelVersion>4.0.0</modelVersion>
20- <groupId>org.apposed</groupId>
21- <artifactId>appose-python</artifactId>
22- <version>0-SNAPSHOT</version>
23- <dependencies>
24- <dependency>
25- <groupId>org.apposed</groupId>
26- <artifactId>appose</artifactId>
27- <version>RELEASE</version>
28- </dependency>
29- </dependencies>
30- </project>' > appose.pom
3116 mvn -f appose.pom dependency:copy-dependencies
32- rm appose.pom
3317fi
3418
3519if [ $# -gt 0 ]
You can’t perform that action at this time.
0 commit comments