Skip to content

Commit

Permalink
Changes to be commited:
Browse files Browse the repository at this point in the history
- Undo the accidental package renaming
- Moving utils to src.test.orchestration
- Change version of java in the last site to 16 (sonar)
  • Loading branch information
augustocristian committed Nov 15, 2024
1 parent 9a08652 commit 10929cd
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package giis.retorch.orchestration.testdata;
package giis.retorch.orchestration.classifier;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package giis.retorch.orchestration.testdata;
package giis.retorch.orchestration.classifier;

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package giis.retorch.orchestration.testdata;
package giis.retorch.orchestration.classifier;

import giis.retorch.annotations.AccessModes;
import giis.retorch.orchestration.model.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
import ch.qos.logback.classic.spi.LoggingEvent;
import ch.qos.logback.core.Appender;
import giis.retorch.orchestration.model.System;
import giis.retorch.orchestration.testdata.EmptyInputException;
import giis.retorch.orchestration.testdata.RetorchClassifier;
import giis.retorch.orchestration.classifier.EmptyInputException;
import giis.retorch.orchestration.classifier.RetorchClassifier;
import giis.retorch.orchestration.testdata.SyntheticInvalidClassTests;
import giis.retorch.orchestration.utils.ClassifierUtils;
import giis.retorch.orchestration.testdata.synteticpackage.insidepackage.SyntheticClassOneTests;
import org.junit.Before;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package giis.retorch.orchestration.utils;
package giis.retorch.orchestration;

import giis.retorch.orchestration.model.*;
import giis.retorch.orchestration.model.System;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package giis.retorch.orchestration.utils;
package giis.retorch.orchestration;

import giis.retorch.orchestration.model.*;

Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sonar.projectKey=my:retorch
sonar.projectName=retorch
sonar.organization=giis
sonar.projectVersion=1.0
sonar.java.source=1.8
sonar.java.source=16
sonar.modules=retorch-annotations,retorch-orchestration
sonar.sources=src/main/java
sonar.sourceEncoding=UTF-8
Expand Down

0 comments on commit 10929cd

Please sign in to comment.