Skip to content

Commit 0f29053

Browse files
committed
Fix antora setup.
1 parent d58b313 commit 0f29053

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/deploy-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo BUILD_VERSION=$BUILD_VERSION >> $GITHUB_ENV
3737
- name: Run Antora
3838
run: |
39-
./mvnw --no-transfer-progress -B antora
39+
./mvnw --no-transfer-progress -B antora:antora
4040
- name: Publish Docs
4141
uses: spring-io/spring-doc-actions/[email protected]
4242
with:

pom.xml

+18-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.springframework.cloud</groupId>
1010
<artifactId>spring-cloud-consul</artifactId>
11-
<version>4.1.2-SNAPSHOT</version>
11+
<version>4.1.3-SNAPSHOT</version>
1212
</parent>
1313

1414
<name>Spring Cloud Consul Docs Build</name>
@@ -34,4 +34,21 @@
3434
</plugin>
3535
</plugins>
3636
</build>
37+
38+
<repositories>
39+
<repository>
40+
<id>spring-snapshot</id>
41+
<url>https://repo.spring.io/snapshot</url>
42+
<snapshots>
43+
<enabled>true</enabled>
44+
</snapshots>
45+
<releases>
46+
<enabled>false</enabled>
47+
</releases>
48+
</repository>
49+
<repository>
50+
<id>spring-milestone</id>
51+
<url>https://repo.spring.io/milestone</url>
52+
</repository>
53+
</repositories>
3754
</project>

0 commit comments

Comments
 (0)