-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d174517
commit 0d69355
Showing
4 changed files
with
19 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ src/ant/.ant-targets-upload-dist.xml | |
node | ||
node_modules | ||
build | ||
package.json | ||
docs/package.json | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"dependencies": { | ||
"antora": "3.2.0-alpha.4", | ||
"@antora/atlas-extension": "1.0.0-alpha.2", | ||
"@antora/collector-extension": "1.0.0-alpha.3", | ||
"@asciidoctor/tabs": "1.0.0-beta.6", | ||
"@springio/antora-extensions": "1.11.1", | ||
"@springio/asciidoctor-extensions": "1.0.0-alpha.10" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,13 @@ | |
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-kubernetes-docs-build</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<parent> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-kubernetes</artifactId> | ||
<version>3.1.3-SNAPSHOT</version> | ||
</parent> | ||
|
||
<name>Spring Cloud Kubernetes Docs Build</name> | ||
<description>Builds Spring Cloud Kubernetes Docs.</description> | ||
|
@@ -22,56 +26,12 @@ | |
<url>https://github.com/spring-cloud/spring-cloud-kubernetes/issues</url> | ||
</issueManagement> | ||
|
||
<properties> | ||
<io.spring.maven.antora-version>0.0.3</io.spring.maven.antora-version> | ||
</properties> | ||
|
||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>io.spring.maven.antora</groupId> | ||
<groupId>org.antora</groupId> | ||
<artifactId>antora-maven-plugin</artifactId> | ||
<version>${io.spring.maven.antora-version}</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<options> | ||
<option>--to-dir=target/antora/site</option> | ||
<option>--stacktrace</option> | ||
<option>--fetch</option> | ||
</options> | ||
<environment> | ||
<ALGOLIA_API_KEY>9d489079e5ec46dbb238909fee5c9c29</ALGOLIA_API_KEY> | ||
<ALGOLIA_APP_ID>WB1FQYI187</ALGOLIA_APP_ID> | ||
<ALGOLIA_INDEX_NAME>springdocs</ALGOLIA_INDEX_NAME> | ||
</environment> | ||
<packages> | ||
<package>@antora/[email protected]</package> | ||
<package>@antora/[email protected]</package> | ||
<package>@asciidoctor/[email protected]</package> | ||
<package>@springio/[email protected]</package> | ||
<package>@springio/[email protected]</package> | ||
</packages> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>spring-snapshot</id> | ||
<url>https://repo.spring.io/snapshot</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
</repository> | ||
<repository> | ||
<id>spring-milestone</id> | ||
<url>https://repo.spring.io/milestone</url> | ||
</repository> | ||
</repositories> | ||
|
||
</project> |