1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc; 5 6 import org.apache.commons.lang.StringUtils; 7 8 public class CheckForJava14 { 9 public static void main(String[] args) { 10 String version = System.getProperty("java.version"); 11 System.exit(StringUtils.contains(version, "1.4") ? 0 : -1); 12 } 13 } 14