Specify a property to be an MAX aggregation.
@Max is short hand for @Aggregation("max(...propertyName...)")
Example:
@Max
BigDecimal distance;
// is the same as:
@Aggregation("max(distance)")
BigDecimal distance;