-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.properties
executable file
·64 lines (43 loc) · 1.81 KB
/
project.properties
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Ant and Maven properties for building the OpenSpaces
# Values in this file will be overridden by any values with the same name
# in a user-created build.properties file in the same directory.
# Open Spaces Title
openspaces-title=OpenSpaces
openspaces-name=openspaces
# openspaces version
openspaces-version=9.7.0.${new.build.number}
# Project name
name=openspaces
# Compile with debug code
debug=on
# Library directory within project. Where third party jars reside.
lib.dir=${basedir}/lib
# Source directory
main.src.dir=${basedir}/src/main/java
# Resource directory
main.resources.dir=${basedir}/src/main/resources
# Test directory
main.test.dir=${basedir}/src/test/java
# With the exception of 'dist' and 'docs/api', all artifacts produced by
# the build go somewhere underneath the target dir
target.dir=${basedir}/target
# Main source tree will be compiled into this directory tree
target.classes.dir=${target.dir}/classes
# Test tree will be compiled into this directory tree
target.testclasses.dir=${target.dir}/test-classes
# Deployment templates directory
deploy.templates.dir=${basedir}/deploy/templates
# Wildcards to be matched by JUnit tests.
# Convention is that our JUnit test classes have XXXTests-style names.
test.includes=**/Test*.class, **/*Test.class, **/*Tests.class, **/*TestCase.class, **/*TestSuite.class
# Wildcards to exclude among JUnit tests.
test.excludes=**/Abstract*,**/PersistentQueueTests.class,**/PersistentSedaTests.class
# JUnit settings
junit.forkmode=perTest
# Directory where JUnit test reports are written
target.junit.reports.dir=${target.dir}/test-reports
# Directory where JUnit test summary is written
target.junit.summary.dir=${target.dir}/test-summary
target.javadoc.dir=${target.dir}/javadoc
dist.dir=${basedir}/dist
maven.plugin.dir=${lib.dir}/openspaces/maven-openspaces-plugin