Skip to content

Change resource package location #481

New issue

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

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

Already on GitHub? # to your account

Merged
merged 1 commit into from
Nov 26, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
import io.serverlessworkflow.impl.expressions.JQExpressionFactory;
import io.serverlessworkflow.impl.jsonschema.DefaultSchemaValidatorFactory;
import io.serverlessworkflow.impl.jsonschema.SchemaValidatorFactory;
import io.serverlessworkflow.resources.DefaultResourceLoaderFactory;
import io.serverlessworkflow.resources.ResourceLoaderFactory;
import io.serverlessworkflow.impl.resources.DefaultResourceLoaderFactory;
import io.serverlessworkflow.impl.resources.ResourceLoaderFactory;

import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
import io.serverlessworkflow.impl.json.JsonUtils;
import io.serverlessworkflow.impl.jsonschema.SchemaValidator;
import io.serverlessworkflow.impl.jsonschema.SchemaValidatorFactory;
import io.serverlessworkflow.resources.ResourceLoader;
import io.serverlessworkflow.impl.resources.ResourceLoader;

import java.nio.file.Path;
import java.util.Collection;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
import io.serverlessworkflow.impl.json.JsonUtils;
import io.serverlessworkflow.impl.jsonschema.SchemaValidator;
import io.serverlessworkflow.impl.jsonschema.SchemaValidatorFactory;
import io.serverlessworkflow.resources.ResourceLoader;
import io.serverlessworkflow.resources.StaticResource;
import io.serverlessworkflow.impl.resources.ResourceLoader;
import io.serverlessworkflow.impl.resources.StaticResource;

import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.InputStream;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import io.serverlessworkflow.api.types.Endpoint;
import io.serverlessworkflow.api.types.EndpointUri;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.nio.file.Path;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import com.fasterxml.jackson.databind.JsonNode;
import io.serverlessworkflow.impl.TaskContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import io.serverlessworkflow.api.types.ExternalResource;
import io.serverlessworkflow.impl.WorkflowContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.nio.file.Path;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.InputStream;

Expand Down
2 changes: 1 addition & 1 deletion impl/core/src/test/resources/switch-then-string.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha5
namespace: examples
namespace: test
name: switch
version: 0.1.0
do:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha5
namespace: examples
namespace: test
name: call-http-shorthand-endpoint
version: '0.1.0'
do:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha2
namespace: examples
namespace: test
name: http-query-params-schema
version: 1.0.0-alpha2
input:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha2
namespace: examples
namespace: test
name: http-query-params
version: 1.0.0-alpha2
input:
Expand Down
2 changes: 1 addition & 1 deletion impl/http/src/test/resources/callGetHttp.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha1
namespace: examples
namespace: test
name: http-call-with-response
version: 1.0.0
do:
Expand Down
2 changes: 1 addition & 1 deletion impl/http/src/test/resources/callPostHttp.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha1
namespace: examples
namespace: test
name: http-call-with-response-output
version: 1.0.0
do:
Expand Down