The BitwiseOperatorTable can be used as a drop in replacement for the StandardOperatorTable.
jep.setComponent(new BitwiseOperatorTable("**","^"));
Note the standard symbol used for power ^ conflicts with java's symbol used for xor, the constructor for the BitwiseOperatorTable takes two strings specifying the symbols used for power and xor respectively.