forked from carrotsearch/junit-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
49 lines (35 loc) · 1.59 KB
/
README
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
JUnitBenchmarks
---------------
Simple Java microbenchmarks written as JUnit tests.
See JavaDoc and http://labs.carrotsearch.com/junit-benchmarks.html for more info.
Contributors and bug reports
----------------------------
Julien Eluard
Neil Prosser
Dominik Drzewiecki [github: drzewo]
Steven Swor [github: sworisbreathing]
Vladimir Miguro [github: trnl]
Development
-----------
mvn clean # Clean the working copy.
mvn install -DskipTests # Quick compile, no tests.
mvn -Prelease # Release mode (javadocs, sources, zip/tgz bundles, gpg signing).
# Results in: target/*.tgz
Release
-------
mvn -Prelease clean deploy # Snapshot or release deploy to sonatype [requires proper setup in settings.xml]
MySQL Testing
--------------------------
The MySQL unit test runs an embedded instance of MySQL, listening on a random
port. However, the test is disabled under the default build profile, and is
only executed when the `tests-include-mysql` profile is active. This is done
for two reasons:
1. Running an embedded instance of mysql as part of a maven build requires
`mysql-connector-mxj-db-files`, which is around 133MB in size. By moving
the test to a different profile, we are able to skip downloading this (very
large) dependency, unless the user explicitly specifies that he wants to use
it.
2. Running an automated task which opens up a random port can cause problems
with firewalls or other applications, and opening up a port introduces
potential security problems. The port is not opened under the default build
profile.