Skip to content

Commit

Permalink
Merge pull request #24 from catenax-ng/ver2.0.0
Browse files Browse the repository at this point in the history
releasing sd factory major release
  • Loading branch information
wjost authored Feb 24, 2023
2 parents 2e7852c + 71bcc7c commit cc4bf92
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/SDFactory/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sources:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.0.0
version: 2.0.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator;
import org.springframework.scheduling.annotation.EnableAsync;

@SpringBootApplication(exclude = {SecurityAutoConfiguration.class })
@ComponentScan(nameGenerator = FullyQualifiedAnnotationBeanNameGenerator.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@
import static io.vavr.control.Try.failure;

public class Utils {

private Utils() {
throw new IllegalStateException("Utility class");
}

public static <T> Function<? super Throwable, ? extends Try<? extends T>>
mapFailure(Function<? super Throwable, ? extends Throwable> f) {
return ex -> failure(f.apply(ex));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class SelfDescriptionFactoryApplicationTests {

@Test
void contextLoads() {
// here we assert the context is brought up
}

}

0 comments on commit cc4bf92

Please sign in to comment.