summaryrefslogtreecommitdiff
path: root/javaSE/javaSE/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'javaSE/javaSE/README.md')
-rw-r--r--javaSE/javaSE/README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/javaSE/javaSE/README.md b/javaSE/javaSE/README.md
new file mode 100644
index 000000000..e40e9ca4a
--- /dev/null
+++ b/javaSE/javaSE/README.md
@@ -0,0 +1,25 @@
+## SmartDeviceLink JavaSE
+
+The JavaSE project is meant to allow SDL compatibility for embedded applications.
+
+#### Dependency Managers
+
+To compile with the latest release of SDL JavaSE, include the following in your app's `build.gradle` file,
+
+```sh
+repositories {
+ jcenter()
+}
+dependencies {
+ implementation 'com.smartdevicelink:sdl_java_se:4.+'
+}
+```
+
+#### Manually building a JAR
+
+If you prefer making a JAR, simply call:
+
+```sh
+gradle build
+```
+from within the project and a JAR should be generated in the `build/libs` folder \ No newline at end of file