Skip to content

Commit ee1025f

Browse files
committed
Initial commit
0 parents  commit ee1025f

26 files changed

+399
-0
lines changed

.classpath

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
6+
<classpathentry kind="output" path="bin"/>
7+
</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>StringSplitter</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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.6
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.6

bin/build.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project name="StringSplitter" default="compress">
3+
<echo message="Build Started" />
4+
5+
<target name="init" depends="clean">
6+
<mkdir dir="build/classes" />
7+
<mkdir dir="dist" />
8+
</target>
9+
10+
<target name="compile" depends="init">
11+
<javac srcdir="." destdir="build/classes" />
12+
</target>
13+
14+
<target name="compress" depends="compile">
15+
<jar destfile="dist/StringSplitter-1.0.0.jar" basedir="build/classes" excludes="com\jrcube\text\test\**" />
16+
</target>
17+
18+
<target name="clean">
19+
<delete dir="build" />
20+
<delete dir="dist" />
21+
</target>
22+
23+
</project>
2.19 KB
Binary file not shown.
3.75 KB
Binary file not shown.
1.85 KB
Binary file not shown.
1.05 KB
Binary file not shown.
2.13 KB
Binary file not shown.

bin/dist/StringSplitter-1.0.0.jar

3.35 KB
Binary file not shown.

0 commit comments

Comments
 (0)