Skip to content

Commit 0dd1b05

Browse files
committed
Intial Version of AutoPilot for Kafka-config changes
0 parents  commit 0dd1b05

File tree

176 files changed

+33650
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+33650
-0
lines changed

.classpath

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/java/main"/>
4+
<classpathentry kind="src" path="src/java/tests"/>
5+
<classpathentry kind="lib" path="lib/base_exception.jar"/>
6+
<classpathentry kind="lib" path="lib/catalog_services_id_generator.jar"/>
7+
<classpathentry kind="lib" path="lib/command_line_utility.jar"/>
8+
<classpathentry kind="lib" path="lib/data_validation.jar"/>
9+
<classpathentry kind="lib" path="lib/database_abstraction.jar"/>
10+
<classpathentry kind="lib" path="lib/db_connection_factory.jar"/>
11+
<classpathentry kind="lib" path="lib/guid_generator.jar"/>
12+
<classpathentry kind="lib" path="lib/id_generator.jar"/>
13+
<classpathentry kind="lib" path="lib/logging_wrapper.jar"/>
14+
<classpathentry kind="lib" path="lib/object_factory_config_manager_plugin.jar"/>
15+
<classpathentry kind="lib" path="lib/object_factory.jar"/>
16+
<classpathentry kind="lib" path="lib/typesafe_enum.jar"/>
17+
<classpathentry kind="lib" path="lib/topcoder_commons_utility.jar"/>
18+
<classpathentry kind="lib" path="lib/job_scheduler.jar"/>
19+
<classpathentry kind="lib" path="lib/configuration_manager.jar"/>
20+
<classpathentry kind="lib" path="lib/apache-logging-log4j.jar"/>
21+
<classpathentry kind="lib" path="lib/phase_management.jar"/>
22+
<classpathentry kind="lib" path="lib/project_management.jar"/>
23+
<classpathentry kind="lib" path="lib/project_phases.jar"/>
24+
<classpathentry kind="lib" path="lib/search_builder_1.4_modified.jar"/>
25+
<classpathentry kind="lib" path="lib/workdays.jar"/>
26+
<classpathentry kind="lib" path="lib/jackson-core-2.9.3.jar"/>
27+
<classpathentry kind="lib" path="lib/gson-2.8.2.jar"/>
28+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.7.0_17"/>
29+
<classpathentry kind="output" path="bin"/>
30+
</classpath>

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>auto-pilot</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
4+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
5+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6+
org.eclipse.jdt.core.compiler.compliance=1.7
7+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
9+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12+
org.eclipse.jdt.core.compiler.source=1.7

README

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
This is a component for testing builds
2+
3+
TO RUN:
4+
5+
1. Install the component structure in ${basedir}
6+
7+
2. Create "topcoder_global.properties" in ${basedir}/.. and add the properties from steps 2,3,4
8+
9+
3. The following standard build script properties must be set
10+
ext_libdir - root of third party libraries
11+
tcs_libdir - root of topcoder components
12+
java_1_5_bootclasspath - installation path for java 1.5 (only needed for compile_targets task)
13+
14+
4. The following standard build script properties can be changed (defaults are noted)
15+
debug=off - as expected
16+
verbose=no - as expected
17+
cobertura.dir=${ext_libdir}/cobertura/1.8
18+
installation directory of cobertura script expects {$cobertura.dir}/cobertura.jar
19+
and {$cobertura.dir}/lib/containg Jars for asm, jakarta, and log4j to run cobertura task
20+
21+
5. The following properties need to be set for this component
22+
None
23+
24+
NB:
25+
The folder ${basedir}/test_reflib contains TopCoder components
26+
that are required by this component's test code. This component is
27+
used to by compile_test and test targets. Components are listed under
28+
the following directory structure "component name"/"component version".
29+
Components are provided AS IS for development purposes only.
30+
31+
Included:

auto.pilot_ant.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<project default="create_run_jar" name="Create Runnable Jar for Project auto-pilot">
3+
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
4+
<!--ANT 1.7 is required -->
5+
<!--define folder properties-->
6+
<property name="dir.buildfile" value="."/>
7+
<property name="dir.workspace" value="D:/workspace"/>
8+
<property name="dir.jarfile" value="${dir.buildfile}"/>
9+
<target name="create_run_jar">
10+
<jar destfile="${dir.jarfile}/auto_pilot.jar" filesetmanifest="mergewithoutmain">
11+
<manifest>
12+
<attribute name="Main-Class" value="com.topcoder.management.phase.autopilot.AutoPilotUtility"/>
13+
<attribute name="Class-Path" value="."/>
14+
</manifest>
15+
<fileset dir="./bin"/>
16+
<zipfileset excludes="META-INF/*.SF" src="./lib/base_exception.jar"/>
17+
<zipfileset excludes="META-INF/*.SF" src="./lib/catalog_services_id_generator.jar"/>
18+
<zipfileset excludes="META-INF/*.SF" src="./lib/command_line_utility.jar"/>
19+
<zipfileset excludes="META-INF/*.SF" src="./lib/data_validation.jar"/>
20+
<zipfileset excludes="META-INF/*.SF" src="./lib/database_abstraction.jar"/>
21+
<zipfileset excludes="META-INF/*.SF" src="./lib/db_connection_factory.jar"/>
22+
<zipfileset excludes="META-INF/*.SF" src="./lib/guid_generator.jar"/>
23+
<zipfileset excludes="META-INF/*.SF" src="./lib/id_generator.jar"/>
24+
<zipfileset excludes="META-INF/*.SF" src="./lib/logging_wrapper.jar"/>
25+
<zipfileset excludes="META-INF/*.SF" src="./lib/object_factory_config_manager_plugin.jar"/>
26+
<zipfileset excludes="META-INF/*.SF" src="./lib/object_factory.jar"/>
27+
<zipfileset excludes="META-INF/*.SF" src="./lib/typesafe_enum.jar"/>
28+
<zipfileset excludes="META-INF/*.SF" src="./lib/topcoder_commons_utility.jar"/>
29+
<zipfileset excludes="META-INF/*.SF" src="./lib/job_scheduler.jar"/>
30+
<zipfileset excludes="META-INF/*.SF" src="./lib/configuration_manager.jar"/>
31+
<zipfileset excludes="META-INF/*.SF" src="./lib/apache-logging-log4j.jar"/>
32+
<zipfileset excludes="META-INF/*.SF" src="./lib/phase_management.jar"/>
33+
<zipfileset excludes="META-INF/*.SF" src="./lib/project_management.jar"/>
34+
<zipfileset excludes="META-INF/*.SF" src="./lib/project_phases.jar"/>
35+
<zipfileset excludes="META-INF/*.SF" src="./lib/search_builder_1.4_modified.jar"/>
36+
<zipfileset excludes="META-INF/*.SF" src="./lib/workdays.jar"/>
37+
<zipfileset excludes="META-INF/*.SF" src="./lib/jackson-core-2.9.3.jar"/>
38+
<zipfileset excludes="META-INF/*.SF" src="./lib/gson-2.8.2.jar"/>
39+
</jar>
40+
</target>
41+
</project>

auto_pilot.jar

1.53 MB
Binary file not shown.

0 commit comments

Comments
 (0)