Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Adding some java-specific rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
alainjobart committed Jun 18, 2014
1 parent a230116 commit d16c600
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ tags

# mysql build dirs
third_party/mysql

# java target files
java/vtocc-client/target
java/vtocc-jdbc-driver/target
third_party/acolyte
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ test: unit_test queryservice_test integration_test

clean:
go clean -i ./go/...
rm -rf java/vtocc-client/target java/vtocc-jdbc-driver/target third_party/acolyte

unit_test:
go test ./go/...
Expand Down Expand Up @@ -72,6 +73,10 @@ integration_test:
echo ; \
done

# this rule only works if bootstrap.sh was successfully ran in ./java
java_test:
cd java && mvn verify

bson:
bsongen -file ./go/mysql/proto/structs.go -type QueryResult -o ./go/mysql/proto/query_result_bson.go
bsongen -file ./go/mysql/proto/structs.go -type Field -o ./go/mysql/proto/field_bson.go
Expand Down

0 comments on commit d16c600

Please sign in to comment.