Considering there is a package in a module :
package com.example.apple
Is it possible to exclude that particular package of that module instead of commenting each individual files of that package one by one?
Say I have multiple modules as :
myProject/
/module1
/com.example
/somepackage1
file1.scala
file2.scala
file3.scala
..........
/somepackage2
filep1.scala
filep2.scala
filep3.scala
/module2
/com.example
/somepackage3
/somepackage3
/module3
.......similarly
So here , if we can exclude somepackage1
in our built.sbt
, it would be great instead of commenting file1,file2,file3...
individually.
Considering that I dont want that package to not get compiled.