-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildfile.yaml
executable file
·39 lines (32 loc) · 1.03 KB
/
buildfile.yaml
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
39
# Generated by Buildr 1.3.0, change to your liking
# Version number for this release
VERSION_NUMBER = "1.5.0-SNAPSHOT"
# Version number for the next release
NEXT_VERSION = "1.5.1"
# Group identifier for your projects
GROUP = "fitnesse-pom-widget"
COPYRIGHT = "Torbjorn Vatn"
# Specify Maven 2.0 remote repositories here, like this:
repositories.remote << "http://www.ibiblio.org/maven2/"
# Dependencies
FITNESSE = 'org.fitnesse:fitnesse:jar:20070619'
MAVEN_CORE = 'org.apache.maven:maven-core:jar:2.0.9'
MAVEN_EMBEDDER = 'org.apache.maven:maven-embedder:jar:2.0.4'
desc "The Fitnesse-pom-widget project"
define "fitnesse-pom-widget" do
project.version = VERSION_NUMBER
project.group = GROUP
manifest["Implementation-Vendor"] = COPYRIGHT
compile.with # Add classpath dependencies
test.compile.with # Add classpath dependencies
test.resources
package :jar
build do
# puts "Building fitnesse-pom-widget"
end
check package(:jar), 'should exist' do
it.should exist
end
javadoc projects
package :javadoc
end