Skip to content

Commit

Permalink
Rename group and package from aiflow to flowframework
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Widdis <[email protected]>
  • Loading branch information
dbwiddis committed Aug 16, 2023
1 parent b732fa9 commit 16f2ea8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ apply plugin: 'checkstyle'
apply plugin: 'jacoco'
apply plugin: 'com.form.diff-coverage'

def pluginName = 'ai-flow-framework'
def pluginName = 'flow-framework'
def pluginDescription = 'OpenSearch plugin that enables builders to innovate AI apps on OpenSearch'
def projectPath = 'org.opensearch'
def pathToPlugin = 'aiflow'
def pathToPlugin = 'flowframework'
def pluginClassName = 'FlowFrameworkPlugin'
group = "org.opensearch.aiflow"
group = "org.opensearch.flowframework"

publishing {
publications {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
package org.opensearch.aiflow;
package org.opensearch.flowframework;

import org.opensearch.plugins.Plugin;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
package org.opensearch.aiflow;
package org.opensearch.flowframework;

import static org.hamcrest.Matchers.containsString;

Expand Down Expand Up @@ -38,6 +38,6 @@ public void testPluginInstalled() throws IOException, ParseException {
String body = EntityUtils.toString(response.getEntity(), StandardCharsets.UTF_8);

logger.info("response body: {}", body);
assertThat(body, containsString("aiflow"));
assertThat(body, containsString("flowframework"));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
package org.opensearch.aiflow;
package org.opensearch.flowframework;

import org.opensearch.test.OpenSearchTestCase;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
package org.opensearch.aiflow;
package org.opensearch.flowframework;

import org.opensearch.test.rest.yaml.ClientYamlTestCandidate;
import org.opensearch.test.rest.yaml.OpenSearchClientYamlSuiteTestCase;
Expand Down
2 changes: 1 addition & 1 deletion src/yamlRestTest/resources/rest-api-spec/test/10_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
h: component

- match:
$body: /^ai-flow-framework\n$/
$body: /^flow-framework\n$/

0 comments on commit 16f2ea8

Please sign in to comment.