Skip to content

Commit fe3998f

Browse files
committed
Drop Ant 1.5 and 1.6 support
Drop Ant 1.5/1.6 support in InternalAntRunner classes
1 parent 9c3aad6 commit fe3998f

File tree

10 files changed

+87
-786
lines changed

10 files changed

+87
-786
lines changed

ant/org.eclipse.ant.core/src_ant/org/eclipse/ant/internal/core/ant/DemuxInputStreamSetter.java

Lines changed: 0 additions & 28 deletions
This file was deleted.

ant/org.eclipse.ant.core/src_ant/org/eclipse/ant/internal/core/ant/ExecutorSetter.java

Lines changed: 0 additions & 29 deletions
This file was deleted.

ant/org.eclipse.ant.core/src_ant/org/eclipse/ant/internal/core/ant/InternalAntMessages.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,9 @@
1818
public class InternalAntMessages extends NLS {
1919
private static final String BUNDLE_NAME = "org.eclipse.ant.internal.core.ant.InternalAntMessages";//$NON-NLS-1$
2020

21-
public static String InternalAntRunner_ant_1_7_needed_for_help_message;
22-
23-
public static String InternalAntRunner_ant_1_7_needed_for_help_info;
24-
2521
public static String InternalAntRunner_Build_file;
2622
public static String InternalAntRunner_Arguments;
2723
public static String InternalAntRunner_Unable_to_instantiate_logger;
28-
public static String InternalAntRunner_Could_not_load_the_version_information;
2924
public static String InternalAntRunner_Using_file_as_build_log;
3025
public static String InternalAntRunner_Could_not_write_to_log_file;
3126
public static String InternalAntRunner_BUILD_SUCCESSFUL_1;
@@ -37,24 +32,17 @@ public class InternalAntMessages extends NLS {
3732
public static String InternalAntRunner_specify_a_classname_using_the_logger_argument;
3833
public static String InternalAntRunner_specify_a_log_file_using_the_log_argument;
3934
public static String InternalAntRunner_specify_a_buildfile_using_the_buildfile_argument;
40-
public static String InternalAntRunner_Class_not_found_for_task;
41-
public static String InternalAntRunner_Class_not_found_for_type;
4235
public static String InternalAntRunner_Only_one_logger_class_may_be_specified;
4336
public static String InternalAntRunner_specify_a_classname_the_inputhandler_argument;
4437
public static String InternalAntRunner_Only_one_input_handler_class_may_be_specified;
4538
public static String InternalAntRunner_specify_a_property_filename_when_using_propertyfile_argument;
4639
public static String InternalAntRunner_could_not_load_property_file;
4740
public static String InternalAntRunner_handler_does_not_implement_InputHandler5;
4841
public static String InternalAntRunner_Unable_to_instantiate_input_handler_class;
49-
public static String InternalAntRunner_Specifying_an_InputHandler_is_an_Ant_1_5_feature;
50-
public static String InternalAntRunner_The_diagnositics_options_is_an_Ant_1_5_feature;
51-
public static String InternalAntRunner_Specifying_property_files_is_a_Ant_1_5_feature;
5242
public static String InternalAntRunner_Default_target_does_not_exist;
5343
public static String InternalAntRunner_anthome_must_be_set_to_use_ant_diagnostics;
5444
public static String InternalAntRunner_Buildfile_is_not_a_file;
5545
public static String InternalAntRunner_find_not_supported;
56-
public static String InternalAntRunner_Error_setting_Ant_task;
57-
public static String InternalAntRunner_Missing_Class;
5846
public static String InternalAntRunner_157;
5947

6048
public static String InternalAntRunner_unknown_target;
@@ -63,8 +51,6 @@ public class InternalAntMessages extends NLS {
6351

6452
public static String ProgressBuildListener_Build_cancelled;
6553

66-
public static String InternalProject_could_not_create_type;
67-
6854
public static String InternalAntRunner_SecurityManagerError;
6955

7056
static {

ant/org.eclipse.ant.core/src_ant/org/eclipse/ant/internal/core/ant/InternalAntMessages.properties

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
InternalAntRunner_Build_file=Buildfile: {0}
1616
InternalAntRunner_Arguments=Arguments: {0}
1717
InternalAntRunner_Unable_to_instantiate_logger=Unable to instantiate logger: {0}
18-
InternalAntRunner_Could_not_load_the_version_information=Could not load the version information: {0}
1918
InternalAntRunner_Using_file_as_build_log=Using {0} file as build log.
2019
InternalAntRunner_Could_not_write_to_log_file=Cannot write on the specified log file: {0}. Make sure the path exists and you have write permissions.
2120
InternalAntRunner_BUILD_SUCCESSFUL_1=BUILD SUCCESSFUL
@@ -27,29 +26,19 @@ InternalAntRunner_specify_a_classname_using_the_listener_argument=You must speci
2726
InternalAntRunner_specify_a_classname_using_the_logger_argument=You must specify a classname when using the -logger argument
2827
InternalAntRunner_specify_a_log_file_using_the_log_argument=You must specify a log file when using the -log argument
2928
InternalAntRunner_specify_a_buildfile_using_the_buildfile_argument=You must specify a buildfile when using the -buildfile argument
30-
InternalAntRunner_Class_not_found_for_task=Class {0} not found for task {1}
31-
InternalAntRunner_Class_not_found_for_type=Class {0} not found for type {1}
3229
InternalAntRunner_Only_one_logger_class_may_be_specified=Only one logger class may be specified
3330
InternalAntRunner_specify_a_classname_the_inputhandler_argument=You must specify a classname when using the -inputhandler argument
3431
InternalAntRunner_Only_one_input_handler_class_may_be_specified=Only one input handler class may be specified.
3532
InternalAntRunner_specify_a_property_filename_when_using_propertyfile_argument=You must specify a property filename when using the -propertyfile argument
3633
InternalAntRunner_could_not_load_property_file=Could not load property file: {0}
37-
InternalAntRunner_ant_1_7_needed_for_help_info=Run with at least Ant 1.7.0 to print project help information
38-
InternalAntRunner_ant_1_7_needed_for_help_message=Run with at least Ant 1.7.0 to print the help message
3934
InternalAntRunner_handler_does_not_implement_InputHandler5=The specified input handler class {0} does not implement the org.apache.tools.ant.input.InputHandler interface
4035
InternalAntRunner_Unable_to_instantiate_input_handler_class=Unable to instantiate specified input handler class {0} : {1}
41-
InternalAntRunner_Specifying_an_InputHandler_is_an_Ant_1_5_feature=Specifying an InputHandler is an Ant 1.5.* feature. Please update your Ant classpath to include an Ant version greater than this.
42-
InternalAntRunner_The_diagnositics_options_is_an_Ant_1_5_feature=The diagnostics options is an Ant 1.5.* feature. Please update your Ant classpath to include an Ant version greater than this.
43-
InternalAntRunner_Specifying_property_files_is_a_Ant_1_5_feature=Specifying property files is an Ant 1.5.* feature. Please update your Ant classpath to include an Ant version greater than this.
4436
InternalAntRunner_Default_target_does_not_exist=Default target {0}{1}{2} does not exist in this project
4537
InternalAntRunner_anthome_must_be_set_to_use_ant_diagnostics=ANT_HOME must be set to use Ant diagnostics
4638
InternalAntRunner_Buildfile_is_not_a_file=Buildfile: {0} is not a file
4739
InternalAntRunner_find_not_supported=-find not supported.\nCan be emulated using Run As > Ant Build located\nin the Run > External Tools menu
48-
InternalAntRunner_Error_setting_Ant_task=Error setting Ant task {0}
49-
InternalAntRunner_Missing_Class=Could not load a class required for parsing targets
5040
InternalAntRunner_157=-lib not supported\nConfigure the Ant runtime classpath using either the\nglobal Ant runtime classpath or the Ant runtime classpath\n for this particular build
5141
InternalAntRunner_unknown_target=Unknown target: {0}
5242
InternalAntRunner_no_known_target=No known target specified.
5343
ProgressBuildListener_Build_cancelled=Build cancelled.
54-
InternalProject_could_not_create_type=Could not create type {0} due to {1}
5544
InternalAntRunner_SecurityManagerError=Setting Security Manager is not supported

0 commit comments

Comments
 (0)