I’m curious if there’s a way to build specific packages in eclipse. For instance, if I have a project with a src folder containing
com.example.a
com.example.b
com.example.c
Is there a way to build/compile just com.example.a and com.example.c? I know there’s a way to do it in ant, but hopefully there’s an eclipse solution too.
You can exclude
com.example.bfrom the build path.For different builds/packages/assemblies (jar files?) you should use ant. That’s one reason why it is integrated in eclipse.