chore(core): move from org.kestra to io.kestra (#306)

This commit is contained in:
Ludovic DEHON
2021-03-19 22:30:15 +01:00
committed by tchiotludo
parent 9536ebca26
commit b55ac08ba9
510 changed files with 2693 additions and 2673 deletions

View File

@@ -1,4 +1,4 @@
package org.kestra.storage.local;
package io.kestra.storage.local;
import io.micronaut.context.annotation.ConfigurationProperties;
import lombok.Getter;

View File

@@ -1,6 +1,6 @@
package org.kestra.storage.local;
package io.kestra.storage.local;
import org.kestra.core.storages.StorageInterface;
import io.kestra.core.storages.StorageInterface;
import java.io.*;
import java.net.URI;

View File

@@ -1,4 +1,4 @@
package org.kestra.storage.local;
package io.kestra.storage.local;
import io.micronaut.context.annotation.Requires;

View File

@@ -1,9 +1,9 @@
package org.kestra.storage.local;
package io.kestra.storage.local;
import com.google.common.io.CharStreams;
import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
import org.junit.jupiter.api.Test;
import org.kestra.core.storages.StorageInterface;
import io.kestra.core.storages.StorageInterface;
import java.io.FileInputStream;
import java.io.FileNotFoundException;