Skip to content

Commit

Permalink
Removing oracle driver and associated tests (#1971)
Browse files Browse the repository at this point in the history
* Removing oracle driver and associated tests

* Revert "Removing oracle driver and associated tests"

This reverts commit 5ec3419.

* Refactory tests

* Removing container

* Changing names, from oracle to jdbc

* Fixing graphql dependency

* Renaming oracle package to jdbc

* Renaming modules as per Enrique's comments
  • Loading branch information
fjtirado committed Feb 8, 2024
1 parent d50c46d commit b6ece5b
Show file tree
Hide file tree
Showing 120 changed files with 470 additions and 2,542 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions data-index/data-index-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-events-core</artifactId>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jackson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.kie.kogito.index.graphql;
package org.kie.kogito.index.api;

import graphql.schema.Coercing;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.kie.kogito.index.graphql;
package org.kie.kogito.index.api;

import java.time.DateTimeException;
import java.time.Instant;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
*/
package org.kie.kogito.index.graphql;

import org.kie.kogito.index.api.DateTimeCoercing;

import graphql.schema.GraphQLScalarType;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.inject.Produces;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package org.kie.kogito.index.graphql;

import org.junit.jupiter.api.Test;
import org.kie.kogito.index.api.DefaultDateTimeCoercing;

import graphql.schema.GraphQLScalarType;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import java.time.temporal.ChronoUnit;

import org.junit.jupiter.api.Test;
import org.kie.kogito.index.api.DefaultDateTimeCoercing;

import graphql.language.StringValue;
import graphql.schema.CoercingSerializeException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
import org.kie.kogito.index.graphql.DefaultDateTimeCoercing;
import org.kie.kogito.index.api.DefaultDateTimeCoercing;
import org.kie.kogito.index.graphql.GraphQLScalarTypeProducer;
import org.kie.kogito.index.graphql.query.GraphQLQueryParser;
import org.kie.kogito.index.graphql.query.GraphQLQueryParserRegistry;
Expand Down
Loading

0 comments on commit b6ece5b

Please sign in to comment.