Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*~
*-
TimeWindowCompactionStrategy/target/
target/
Binary file added .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
1 change: 1 addition & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip
35 changes: 35 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
machine:
java:
version:
oraclejdk8

environment:
MAX_HEAP_SIZE: 512M
HEAP_NEWSIZE: 128M

dependencies:
override:
- ./mvnw compile

cache_directories:

test:
override:
- ./mvnw test

deployment:
cassandra-2.0:
branch: cassandra-2.0
commands:
- ./mvnw package
- ./mvnw -s conf/settings.xml deploy
cassandra-2.1:
branch: cassandra-2.1
commands:
- ./mvnw package
- ./mvnw -s conf/settings.xml deploy
cassandra-2.2:
branch: cassandra-2.2
commands:
- ./mvnw package
- ./mvnw -s conf/settings.xml deploy
12 changes: 12 additions & 0 deletions conf/settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Maven settings needed for circle ci build -->
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<servers>
<server>
<id>bintray-repo-twcs</id>
<username>${env.BINTRAY_USERNAME}</username>
<password>${env.BINTRAY_PASSWORD}</password>
</server>
</servers>
</settings>
234 changes: 234 additions & 0 deletions mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading