Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions minipdf-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The library is available from Maven Central:
<dependency>
<groupId>io.github.mini-software</groupId>
<artifactId>minipdf</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</dependency>
```

Expand Down Expand Up @@ -62,14 +62,14 @@ Download the executable JAR with Maven:

```powershell
mvn dependency:copy `
-Dartifact=io.github.mini-software:minipdf-cli:0.2.1 `
-Dartifact=io.github.mini-software:minipdf-cli:0.3.0 `
-DoutputDirectory=.
```

Convert a document:

```powershell
java -jar minipdf-cli-0.2.1.jar input.pptx -o output.pdf
java -jar minipdf-cli-0.3.0.jar input.pptx -o output.pdf
```

The CLI accepts `.docx`, `.xlsx`, and `.pptx` files. Run it with `--help` for
Expand Down Expand Up @@ -107,5 +107,5 @@ secrets before running it:
- `GPG_PASSPHRASE`

Publish a GitHub Release whose tag matches `java-v<version>`, such as
`java-v0.2.1`, or manually dispatch the workflow with `version` set to `0.2.1`.
`java-v0.3.0`, or manually dispatch the workflow with `version` set to `0.3.0`.
The requested version must match the Maven project version.
2 changes: 1 addition & 1 deletion minipdf-java/minipdf-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.mini-software</groupId>
<artifactId>minipdf-java-parent</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>minipdf-cli</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import java.util.stream.Stream;

public final class MiniPdfCommand {
private static final String VERSION = "minipdf-java 0.2.1";
private static final String VERSION = "minipdf-java 0.3.0";

private PrintWriter out = new PrintWriter(System.out, true);
private PrintWriter err = new PrintWriter(System.err, true);
Expand Down
2 changes: 1 addition & 1 deletion minipdf-java/minipdf-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.mini-software</groupId>
<artifactId>minipdf-java-parent</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>minipdf-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion minipdf-java/minipdf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.mini-software</groupId>
<artifactId>minipdf-java-parent</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>minipdf</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion minipdf-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.mini-software</groupId>
<artifactId>minipdf-java-parent</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
<packaging>pom</packaging>

<name>MiniPdf for Java</name>
Expand Down
Loading