-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILDING.txt
38 lines (32 loc) · 1.14 KB
/
BUILDING.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
BUILDING
This project uses sbt as the primary build tool, which can be
downloaded from http://www.scala-sbt.org/.
Build the project like this:
$ sbt package
$ cp lib_managed/jars/*/*/* lib_managed
OTHER BUILD TARGETS
tasks
- Lists all available tasks
compile
- Compiles all scala and java files
update-classifiers
- Downloads all source and javadoc jars for dependencies
eclipse
- Generates eclipse project files
RELEASING
The following steps can be used to create a binary release distribution.
* Commit all changes.
$ git tag <version>
$ mv target/scala-2.10/daffodil-calabash-extension_*.jar .
$ rm -rf target project/target project/project lib_managed/jars lib_managed/docs lib_managed/srcs
$ mkdir -p target/scala-2.10
$ mv daffodil-calabash-extension_*.jar target/scala-2.10
$ cd ..
$ tar zcf daffodil-calabash-extension-<version>-bin.tgz \
daffodil-calabash-extension/*
The following steps can be used to create a source binary distribution.
$ sbt clean
$ rm -rf project
$ cd ..
$ tar zcvf daffodil-calabash-extension-<version>-bin.tgz \
`find daffodil-calabash-extension -type f \! -path '*/.*'`