Commit bdcbdc1 1 parent fb9f9f1 commit bdcbdc1 Copy full SHA for bdcbdc1
File tree 1 file changed +37
-1
lines changed
1 file changed +37
-1
lines changed Original file line number Diff line number Diff line change 1
- # anduril-sdk-java
1
+ # Anduril SDK Java
2
+
3
+ The official [ Anduril] ( https://www.anduril.com/ ) client library.
2
4
3
5
## Requirements
4
6
7
+ Java 1.8 or later
8
+
5
9
## Installation
6
10
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
+
7
43
## Usage
8
44
9
45
## Support
You can’t perform that action at this time.
0 commit comments