Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Quarkus Antora 0.0.4 - fix podman issues #533

Merged
merged 1 commit into from
May 10, 2024
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
4 changes: 1 addition & 3 deletions docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,11 @@
<artifactId>quarkus-langchain4j-watsonx</artifactId>
<version>${project.version}</version>
</dependency>
<!-- remove as does not work on podman machine
<dependency>
<dependency>
<groupId>io.quarkiverse.antora</groupId>
<artifactId>quarkus-antora</artifactId>
<version>${quarkus-antora.version}</version>
</dependency>
-->

<!-- Test dependencies -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import java.util.concurrent.TimeoutException;

import org.hamcrest.CoreMatchers;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import io.quarkus.test.junit.QuarkusTest;
Expand All @@ -15,7 +14,6 @@
public class AntoraTest {

@Test
@Disabled("Antora is not enabled by default as its broken on podman machine")
public void antoraSite() throws TimeoutException, IOException, InterruptedException {
RestAssured
.given()
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<quarkus.version>3.8.2</quarkus.version>
<langchain4j.version>0.30.0</langchain4j.version>
<langchain4j-embeddings.version>0.30.0</langchain4j-embeddings.version>
<quarkus-antora.version>0.0.2</quarkus-antora.version>
<quarkus-antora.version>0.0.4</quarkus-antora.version>
<quarkus-poi.version>2.0.4</quarkus-poi.version> <!-- we need to use this version because langchain4j uses POI 5.2.3 instead of 5.2.5 and the substitution needed is different in the two versions -->
<assertj.version>3.25.3</assertj.version>
<wiremock.version>3.5.4</wiremock.version>
Expand Down
Loading