Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 7d37265

Browse files
committed
Add snapshot documentation to README
1 parent fe6d8c0 commit 7d37265

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,23 @@ repositories {
155155
}
156156
```
157157

158+
### Snapshots
159+
```xml
160+
<repositories>
161+
<repository>
162+
<id>jfrog-snapshots</id>
163+
<name>oss-jfrog-artifactory-snapshots</name>
164+
<url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url>
165+
</repository>
166+
</repositories>
167+
```
168+
For gradle:
169+
```groovy
170+
repositories {
171+
url { https://oss.jfrog.org/artifactory/oss-snapshot-local }
172+
}
173+
```
174+
158175
# Enable GraphQL Servlet
159176

160177
The servlet becomes accessible at `/graphql` if `graphql-spring-boot-starter` added as a dependency to a boot application and a `GraphQLSchema` bean is present in the application. Check out the [simple example](https://github.com/graphql-java-kickstart/graphql-spring-boot/tree/master/example) for the bare minimum required.

0 commit comments

Comments
 (0)