I have few standalone projects which are built in sbt and few are in maven. These projects are available in github as seperate repositories. Now the task is to keep all these projects into a single repository.
My plan is to keep all these projects as different packages into a single maven project and store this into a single repo. I am using IntelliJ as IDE. How can I achieve this? Or is there any easy way to achieve this, other than just copying all repos into a single one? Can we keep both sbt build and maven build file together in one project or do we need to migrate all the sbt builds to maven?
Any leads appreciated!