Skip to content

Commit bdcbdc1

Browse files
Update README.md
1 parent fb9f9f1 commit bdcbdc1

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,45 @@
1-
# anduril-sdk-java
1+
# Anduril SDK Java
2+
3+
The official [Anduril](https://www.anduril.com/) client library.
24

35
## Requirements
46

7+
Java 1.8 or later
8+
59
## Installation
610

11+
### Gradle users
12+
13+
Add this dependency and repository to your project's build.gradle
14+
15+
```gradle
16+
dependencies {
17+
implementation 'com.anduril:anduril-sdk-java:1.0'
18+
}
19+
20+
repositories {
21+
maven {
22+
url = uri('https://maven.pkg.github.com/anduril/anduril-java')
23+
credentials {
24+
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_USERNAME")
25+
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
26+
}
27+
}
28+
}
29+
```
30+
31+
### Maven users
32+
33+
Add this dependency to your project's POM:
34+
35+
```xml
36+
<dependency>
37+
<groupId>com.anduril</groupId>
38+
<artifactId>anduril-sdk-java</artifactId>
39+
<version>LATEST</version>
40+
</dependency>
41+
```
42+
743
## Usage
844

945
## Support

0 commit comments

Comments
 (0)