Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit d254de0

Browse files
authored
Merge pull request #14 from codeoverflow-org/fix/108-project-cleanup
project directory cleanup
2 parents 1cfad1f + bfb9b7c commit d254de0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ version := s"$majorVersion.$minorVersion"
1313
// ---------------------------------------------------------------------------------------------------------------------
1414
// ---------------------------------------------------------------------------------------------------------------------
1515

16+
import org.codeoverflow.chatoverflow.build.api.APIUtility
1617

17-
apiVersionGenerator := APIUtility(streams.value.log)
18+
apiVersionGenerator := new APIUtility(streams.value.log)
1819
.generateAPIVersionFile(sourceDirectory.value, majorVersion, minorVersion)
1920

20-
requirementsGenerator := APIUtility(streams.value.log).generatedRequirements(sourceDirectory.value)
21+
requirementsGenerator := new APIUtility(streams.value.log).generatedRequirements(sourceDirectory.value)
2122

2223

2324
// Update the compile process to generate the api version java class
2425
compile in Compile := {
2526
apiVersionGenerator.value
26-
(compile in Compile).value
2727
requirementsGenerator.value
2828
(compile in Compile).value
2929
}

0 commit comments

Comments
 (0)