forked from OpenTSDB/opentsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Lets maven run OpenTSDB unit tests. Modifies pom.xml.in to configure the surefire plugin properly. Also creates plugin_test.jar that some unit tests depend on. - Makes it easy to use Eclipse. The steps for OSX will be: 0. Install OSX autoconf port install automake autoconf libtool 1. Generate pom.xml and the Eclipse-friendly directory structure overlay ./build.sh pom.xml 2. Build the maven project mvn clean compile 3. Import the Maven project into Eclipse. 4. Include target/generated-sources in Eclipse source path. - Added some file extensions and working files to .gitignore. NOTE: Submitted on behalf of third-party contributors: * Guenther Schmuelling <schmuell@pepperdata.com> * Kimoon Kim <kimoon@pepperdata.com> Signed-off-by: Chris Larsen <clarsen@euphoriaaudio.com>
- Loading branch information
Showing
5 changed files
with
119 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Creates directory structure overlay on top of original source directories so | ||
# that the overlay matches Java package hierarchy. | ||
#!/bin/bash | ||
|
||
if [ ! -d src-main ]; then | ||
mkdir src-main | ||
mkdir src-main/net | ||
mkdir src-main/tsd | ||
(cd src-main/net && ln -s ../../src opentsdb) | ||
(cd src-main/tsd && ln -s ../../src/tsd/QueryUi.gwt.xml QueryUi.gwt.xml) | ||
(cd src-main/tsd && ln -s ../../src/tsd/client client) | ||
fi | ||
if [ ! -d src-test ]; then | ||
mkdir src-test | ||
mkdir src-test/net | ||
(cd src-test/net && ln -s ../../test opentsdb) | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters