Skip to content

Commit

Permalink
modify name
Browse files Browse the repository at this point in the history
Signed-off-by: Kavitha Conjeevaram Mohan <mohakavi@amazon.com>
  • Loading branch information
kavithacm committed Jun 29, 2022
1 parent 36c96e0 commit 9a0e6c9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doctest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ testClusters {
}
}
}))
plugin ':sql'
plugin ':opensearch-sql-plugin'
testDistribution = 'integ_test'
}
}
Expand Down
8 changes: 4 additions & 4 deletions integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies {
testImplementation group: 'org.opensearch.client', name: 'opensearch-rest-client', version: "${opensearch_version}"
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.17.1'
testImplementation project(':sql')
testImplementation project(':opensearch-sql-plugin')
testImplementation project(':legacy')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.6.2')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.6.2')
Expand Down Expand Up @@ -98,12 +98,12 @@ testClusters.all {
}

testClusters.integTest {
plugin ":sql"
plugin ":opensearch-sql-plugin"
}

// Run PPL ITs and new, legacy and comparison SQL ITs with new SQL engine enabled
integTest {
dependsOn ':sql:bundlePlugin'
dependsOn ':opensearch-sql-plugin:bundlePlugin'

systemProperty 'tests.security.manager', 'false'
systemProperty('project.root', project.projectDir.absolutePath)
Expand Down Expand Up @@ -147,7 +147,7 @@ integTest {


task comparisonTest(type: RestIntegTestTask) {
dependsOn ':sql:bundlePlugin'
dependsOn ':opensearch-sql-plugin:bundlePlugin'

systemProperty 'tests.security.manager', 'false'
systemProperty('project.root', project.projectDir.absolutePath)
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

rootProject.name = 'opensearch-sql'

include 'sql'
project(':sql').projectDir = file('plugin')
include 'opensearch-sql-plugin'
project(':opensearch-sql-plugin').projectDir = file('plugin')
include 'ppl'
include 'integ-test'
include 'common'
Expand Down

0 comments on commit 9a0e6c9

Please sign in to comment.