How do I change the JRE (for example, to go from a from 64bit to 32bit version) that is used to run ant from inside eclipse?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
I am not sure that you can do that in a global way. However, it is possible to choose your JRE when you run
Ant
on a specific project:Go in the
Properties
of your project, then selectBuilders
andAnt Builder
. In the properties for this builder, go in theJRE
tab, and choose anSeparate JRE
.Another solution is to specify the JRE used directly in your
build.xml
file.