I did this once and ran into a few kinds of trouble detailed below. If you separate all your environment declaration and tool paths out into one file with sanity checks, and you're judicious in your use of symlinks you should be able to maintain one build across both environments.
Windows uses ; as a path separator instead of :
If your scripts use PATH and CLASSPATH and other environment variables inherited from the windows environment, then scripts that assume they can split/join paths on : are going to be confused.
Likewise, paths that contain semicolons are confusing. Few scripts do this since semicolon is a special character in bash anyway, but it's good to keep in the back of your mind when debugging.
Symlinks kind of work
Some build systems I've seen build trees of symlinks. Symlinks on cygwin work fine with tools compiled for cygwin, but if you pass a symlink to a java program and expect it to dereference it automatically then you'll probably be surprised.
There is no single root directory
Carefully written java programs can work around the problem that there is no single / and binaries compiled/bundled with cygwin can deal because there's the fake /cygdrive/ directory and a fake / but other tools might not.
This hasn't been a real problem for me since build scripts shouldn't traverse from / but I mention it as another source of confusion.