Skip to content

Commit 68375af

Browse files
committed
update docs and add maven repo
1 parent d0b6d8b commit 68375af

File tree

2 files changed

+8
-29
lines changed

2 files changed

+8
-29
lines changed

build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
repositories {
2+
mavenCentral()
3+
}
4+
15
plugins {
26
kotlin("jvm") version "1.9.21"
37
}
48

5-
val graphqlKotlinVersion = "7.0.2"
69
dependencies {
7-
implementation("com.expediagroup", "graphql-kotlin-schema-generator", graphqlKotlinVersion)
8-
implementation("com.expediagroup", "graphql-kotlin-federation", graphqlKotlinVersion)
10+
implementation("com.expediagroup", "graphql-kotlin-schema-generator", "7.0.2")
11+
implementation("com.expediagroup", "graphql-kotlin-federation", "7.0.2")
912
}
1013

1114
sourceSets {

docs/README.md

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,13 @@ This website is built using [Docusaurus](https://docusaurus.io/), a modern stati
55
### Installation
66

77
```
8-
$ yarn
8+
$ bun install
99
```
1010

1111
### Local Development
1212

1313
```
14-
$ yarn start
14+
$ bun docs:start
1515
```
1616

1717
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
18-
19-
### Build
20-
21-
```
22-
$ yarn build
23-
```
24-
25-
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26-
27-
### Deployment
28-
29-
Using SSH:
30-
31-
```
32-
$ USE_SSH=true yarn deploy
33-
```
34-
35-
Not using SSH:
36-
37-
```
38-
$ GIT_USER=<Your GitHub username> yarn deploy
39-
```
40-
41-
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

0 commit comments

Comments
 (0)