Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ExplorViz
explorviz-github-archive
analysis
Commits
3a70f1f6
Commit
3a70f1f6
authored
11 years ago
by
Florian Fittkau
Browse files
Options
Downloads
Patches
Plain Diff
added build script
parent
ee65f9e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
build.xml
+57
-0
57 additions, 0 deletions
build.xml
with
59 additions
and
0 deletions
.gitignore
+
2
−
0
View file @
3a70f1f6
/bin
/bin
/build
/dist
/xtend-gen
/xtend-gen
Thumbs.db
Thumbs.db
\ No newline at end of file
This diff is collapsed.
Click to expand it.
build.xml
0 → 100644
+
57
−
0
View file @
3a70f1f6
<?xml version="1.0" encoding="UTF-8"?>
<project
name=
"Analysis"
default=
"build-all-analysis"
basedir=
"."
>
<property
name=
"src.dir"
value=
"src"
/>
<property
name=
"src-common.dir"
value=
"../common-monitoring/src"
/>
<property
name=
"build.dir"
value=
"build"
/>
<property
name=
"jar.dir"
value=
"dist"
/>
<property
name=
"lib.dir"
value=
"lib"
/>
<property
name=
"classes.java"
value=
"classes/java"
/>
<path
id=
"classpath"
>
<fileset
dir=
"."
>
<include
name=
"${lib.dir}/*.jar"
/>
</fileset>
</path>
<path
id=
"classpath-test"
>
<pathelement
location=
"${build.dir}/${classes.java}"
/>
<fileset
dir=
"."
>
<include
name=
"${lib.dir}/*.jar"
/>
</fileset>
</path>
<target
name=
"build-all-analysis"
depends=
"clean,compile,analysis-jar"
description=
"Compiles and packages the Jar"
>
</target>
<target
name=
"clean"
description=
"Removes artifacts from previous builds"
>
<delete
dir=
"${build.dir}"
includeemptydirs=
"true"
/>
<delete
dir=
"${jar.dir}"
includeemptydirs=
"true"
/>
<delete
dir=
"${reports.dir}"
includeemptydirs=
"true"
/>
</target>
<target
name=
"compile"
>
<mkdir
dir=
"${build.dir}"
/>
<mkdir
dir=
"${build.dir}/${classes.java}"
/>
<javac
srcdir=
"${src-common.dir}"
destdir=
"${build.dir}/${classes.java}"
classpathref=
"classpath"
debug=
"true"
/>
<javac
srcdir=
"${src.dir}"
destdir=
"${build.dir}/${classes.java}"
classpathref=
"classpath"
debug=
"true"
/>
</target>
<target
name=
"analysis-jar"
depends=
"compile"
>
<mkdir
dir=
"${jar.dir}"
/>
<jar
destfile=
"${jar.dir}/explorviz-worker.jar"
>
<manifest>
<attribute
name=
"Class-Path"
value=
"."
/>
<attribute
name=
"Can-Redefine-Classes"
value=
"true"
/>
</manifest>
<fileset
dir=
"${build.dir}/${classes.java}"
/>
<fileset
dir=
"${lib.dir}"
>
<include
name=
"*.LICENSE"
/>
</fileset>
<zipfileset
excludes=
"META-INF/*.SF"
src=
"${lib.dir}/disruptor-3.2.0.jar"
/>
</jar>
</target>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment