Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Track Current progress of SDK #1

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*.iml
*.ipr
*.iws
*.log
build-idea/
out/

Expand Down
506 changes: 0 additions & 506 deletions application-20220203.log

This file was deleted.

150 changes: 0 additions & 150 deletions application-20220204.log

This file was deleted.

46 changes: 18 additions & 28 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,39 +1,18 @@
//buildscript {
// ext {
// opensearch_version = System.getProperty("opensearch.version", "2.0.0-SNAPSHOT")
// }
//
// repositories {
// //mavenLocal()
// maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
// mavenCentral()
// }
//
//// dependencies {
//// classpath "org.opensearch.gradle:build-tools:${opensearch_version}"
//// }
//}

plugins {
id 'java'
}

//apply plugin: 'opensearch.opensearchplugin'

ext {
projectSubstitutions = [:]
licenseFile = rootProject.file('LICENSE.txt')
noticeFile = rootProject.file('NOTICE.txt')
}

//opensearchplugin {
// description 'The S3 repository plugin adds S3 repositories'
// classname 'IndependentPlugin'
//}

apply plugin: 'application'

mainClassName = 'IndependentPlugin'
mainClassName = 'transportservice.RunPlugin'

group 'org.example'
version '1.0-SNAPSHOT'
Expand All @@ -47,22 +26,33 @@ dependencies {
implementation "org.opensearch:opensearch:2.0.0-SNAPSHOT"
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'
// implementation group: 'io.netty', name: 'netty-all', version: '4.1.5.Final'
// implementation group: 'io.netty', name: 'netty-transport-rxtx', version: '4.1.5.Final'
implementation "io.netty:netty-all:4.1.73.Final"
testCompileOnly ("junit:junit:4.13.2") {
exclude module : 'hamcrest'
exclude module : 'hamcrest-core'
}
// Keeping it for now. Will remove it later once figure out the right dependencies
// implementation "io.netty:netty-buffer:4.1.73.Final"
// implementation "io.netty:netty-codec:4.1.73.Final"
// implementation "io.netty:netty-codec-http:4.1.73.Final"
// implementation "io.netty:netty-common:4.1.73.Final"
// implementation "io.netty:netty-handler:4.1.73.Final"
// implementation "io.netty:netty-resolver:4.1.73.Final"
// implementation "io.netty:netty-transport:4.1.73.Final"
// implementation "io.netty:netty-transportservice.transport:4.1.73.Final"
//implementation "org.apache.logging.log4j:log4j-1.2-api:2.17.1"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'javax.xml.bind:jaxb-api:2.2.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation "org.opensearch.test:framework:2.0.0-SNAPSHOT"

}

test {
useJUnitPlatform()
}
jvmArgs '--enable-preview'
systemProperty 'tests.security.manager', 'false'
testLogging.showStandardStreams = true
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
Loading