Skip to content

Commit 0704d25

Browse files
committed
Added binarie and build scripts, returned settings to their defaults and updated gitignore file -> Ready for new release
1 parent 124134d commit 0704d25

8 files changed

Lines changed: 60 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ bin/
99
Jobs/
1010
DUMP/
1111
*.lin
12-
*.xml
12+
#*.xml
1313
*.out
1414
*.in
1515

Settings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?><settings>
2-
<location location_x="1812" location_y="172"/>
2+
<location location_x="200" location_y="200"/>
33
<autosave_location value="true"/>
44
<automatic_login value="false"/>
55
<search_interval value="1"/>
66
<gadget_profile value="2"/>
7-
</settings>
7+
</settings>

binaries/TeamSubb-linux.jar

2.76 MB
Binary file not shown.

binaries/TeamSubb-win32.jar

3.18 MB
Binary file not shown.

binaries/TeamSubb-win64.jar

3.61 MB
Binary file not shown.

build scripts/linux.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<project default="create_run_jar" name="Create Runnable Jar for Project TeamSubb">
3+
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
4+
<!--ANT 1.7 is required -->
5+
<target name="create_run_jar">
6+
<jar destfile="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/binaries/TeamSubb-linux.jar" filesetmanifest="mergewithoutmain">
7+
<manifest>
8+
<attribute name="Main-Class" value="com.coddotech.teamsubb.main.MainClass"/>
9+
<attribute name="Class-Path" value="."/>
10+
</manifest>
11+
<fileset dir="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/bin"/>
12+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/commons-logging-1.1.3.jar"/>
13+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.commons.io_2.0.1.v201105210651.jar"/>
14+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar"/>
15+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar"/>
16+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.eclipse.swt.linux.x86_64.jar"/>
17+
</jar>
18+
</target>
19+
</project>

build scripts/win32.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<project default="create_run_jar" name="Create Runnable Jar for Project TeamSubb">
3+
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
4+
<!--ANT 1.7 is required -->
5+
<target name="create_run_jar">
6+
<jar destfile="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/binaries/TeamSubb-win32.jar" filesetmanifest="mergewithoutmain">
7+
<manifest>
8+
<attribute name="Main-Class" value="com.coddotech.teamsubb.main.MainClass"/>
9+
<attribute name="Class-Path" value="."/>
10+
</manifest>
11+
<fileset dir="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/bin"/>
12+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/commons-logging-1.1.3.jar"/>
13+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.commons.io_2.0.1.v201105210651.jar"/>
14+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar"/>
15+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar"/>
16+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.eclipse.swt.windows.x86.jar"/>
17+
</jar>
18+
</target>
19+
</project>

build scripts/win64.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<project default="create_run_jar" name="Create Runnable Jar for Project TeamSubb">
3+
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
4+
<!--ANT 1.7 is required -->
5+
<target name="create_run_jar">
6+
<jar destfile="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/binaries/TeamSubb-win64.jar" filesetmanifest="mergewithoutmain">
7+
<manifest>
8+
<attribute name="Main-Class" value="com.coddotech.teamsubb.main.MainClass"/>
9+
<attribute name="Class-Path" value="."/>
10+
</manifest>
11+
<fileset dir="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/bin"/>
12+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/commons-logging-1.1.3.jar"/>
13+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.commons.io_2.0.1.v201105210651.jar"/>
14+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar"/>
15+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar"/>
16+
<zipfileset excludes="META-INF/*.SF" src="/media/coddo/Documents/Dropbox/Programming/Java/TeamSubb/libs/org.eclipse.swt.windows.x64.jar"/>
17+
</jar>
18+
</target>
19+
</project>

0 commit comments

Comments
 (0)