Skip to content

Commit 367c762

Browse files
authored
Publish artifacts to maven local (#92)
* Publish artifacts to maven local Signed-off-by: Owais Kazi <[email protected]> * PR comments and updated the dev guide Signed-off-by: Owais Kazi <[email protected]> * Renamed project in settings.gradle Signed-off-by: Owais Kazi <[email protected]> Signed-off-by: Owais Kazi <[email protected]>
1 parent 1fe933f commit 367c762

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

DEVELOPER_GUIDE.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
# OpenSearch SDK Developer Guide
33
- [Introduction](#introduction)
44
- [Getting Started](#getting-started)
5-
- [Git Clone OpenSearch-SDK Repo](#git-clone-OpenSearch-SDK-repo)
6-
- [Git Clone OpenSearch Repo](#git-clone-opensearch-repo)
7-
- [Publish OpenSearch Feature/Extensions branch to Maven local](#publish-opensearch-feature/extensions-branch-to-maven-local)
8-
- [Run OpenSearch-SDK](#run-opensearch-sdk)
9-
- [Create extensions.yml file](#create_extensions_file)
5+
- [Git Clone OpenSearch-SDK Repo](#git-clone-OpenSearch-SDK-repo)
6+
- [Git Clone OpenSearch Repo](#git-clone-opensearch-repo)
7+
- [Publish OpenSearch Feature/Extensions branch to Maven local](#publish-opensearch-featureextensions-branch-to-maven-local)
8+
- [Run OpenSearch-SDK](#run-opensearch-sdk)
9+
- [Create extensions.yml file](#create-extensionsyml-file)
1010
- [Run OpenSearch](#run-opensearch)
11-
- [Run Tests](#run-tests)
11+
- [Publish OpenSearch-SDK to Maven Local](#publish-openSearch-sdk-to-maven-local)
12+
- [Run Tests](#run-tests)
1213
- [Submitting Changes](#submitting-changes)
1314

1415
## Introduction
@@ -54,7 +55,11 @@ Bound addresses will then be logged to the terminal :
5455
[main] INFO transportservice.TransportService - profile [test]: publish_address {127.0.0.1:5555}, bound_addresses {[::1]:5555}, {127.0.0.1:5555}
5556
```
5657

57-
58+
## Publish OpenSearch-SDK to Maven local
59+
Until we publish this repo to maven central. Publishing to maven local is the way to import the artifacts
60+
```
61+
./gradlew publishToMavenLocal
62+
```
5863

5964
## Create extensions.yml file
6065

build.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,24 @@ ext {
2424

2525
apply plugin: 'application'
2626
apply from: 'gradle/formatting.gradle'
27+
apply plugin: 'maven-publish'
2728

2829
mainClassName = 'org.opensearch.sdk.ExtensionsRunner'
2930

3031
group 'org.opensearch.sdk'
3132
version '1.0.0-SNAPSHOT'
3233

34+
35+
publishing {
36+
publications {
37+
group = "org.opensearch"
38+
version = "1.0.0-SNAPSHOT"
39+
mavenJava(MavenPublication) {
40+
from components.java
41+
}
42+
}
43+
}
44+
3345
repositories {
3446
mavenLocal()
3547
// Remove the commented code below once TransportService is published to maven

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'opensearch-sdk'
1+
rootProject.name = 'opensearch-sdk-java'

0 commit comments

Comments
 (0)