Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[wtp-releng] Please get EE's spec'd this week


189356 01:22:27 nor P3 jst-inbox@xxxxxxxxxxx david_williams@xxxxxxxxxx NEW --- Many JST plugins still need EE specified
189357 01:27:52 nor P3 wst-inbox@xxxxxxxxxxx david_williams@xxxxxxxxxx NEW --- A few WST plugins still need EE specified
189354 01:16:59 nor P3 wst.sse-inbox@xxxxxxxxxxx david_williams@xxxxxxxxxx NEW --- SSE related test plugins should have EE spec'd

I don't know of an Eclipse way to find missing EE's, but from a bash/cygwin shell, you can use a command similar to the following to
find manifest.mf files, that do not contain 'RequiredExecutionEnvironment ', executed from the top of a plugins directory (or workspace directory).

find ./ -maxdepth 3 -iname manifest.mf | xargs grep -L RequiredExecutionEnvironment > eeout.txt


Back to the top