File tree Expand file tree Collapse file tree 5 files changed +7
-14
lines changed
main/java/com/github/nosan/embedded/cassandra
test/java/com/github/nosan/embedded/cassandra Expand file tree Collapse file tree 5 files changed +7
-14
lines changed Original file line number Diff line number Diff line change 11Embedded Cassandra
22===========
3- ![ Github CI] ( https://github.com/nosan/embedded-cassandra/workflows/build/badge.svg )
4- [ ![ codecov] ( https://codecov.io/gh/nosan/embedded-cassandra/branch/master/graph/badge.svg?token=SNW1ICHYXL )] ( https://codecov.io/gh/nosan/embedded-cassandra )
5- [ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/com.github.nosan/embedded-cassandra/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/com.github.nosan/embedded-cassandra/ )
6- [ ![ Javadoc] ( https://javadoc.io/badge2/com.github.nosan/embedded-cassandra/javadoc.svg )] ( https://javadoc.io/doc/com.github.nosan/embedded-cassandra )
73
84## Getting Started
95
106Embedded Cassandra provides an easy way to start and stop [ Apache Cassandra] ( https://cassandra.apache.org ) .
117
12- To learn more about Embedded Cassandra, please consult the [ reference documentation] ( https://nosan.github.io/embedded-cassandra/4.1.0 ) .
8+ To learn more about Embedded Cassandra, please consult the [ reference documentation] ( https://nosan.github.io/embedded-cassandra/4.1.1 ) .
139
1410All versions of Embedded Cassandra reference documentation are [ here] ( https://nosan.github.io/embedded-cassandra ) .
1511
@@ -65,4 +61,3 @@ Embedded Cassandra is released under the [Apache License 2.0](https://www.apache
6561___
6662
6763[ ![ paypal] ( https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif )] ( https://www.paypal.com/donate/?business=D3ESQ4RY4XN7J&no_recurring=0¤cy_code=USD ) <a href =" https://www.buymeacoffee.com/nosan " target =" _blank " >
68-
Original file line number Diff line number Diff line change 66 <modelVersion >4.0.0</modelVersion >
77 <groupId >com.github.nosan</groupId >
88 <artifactId >embedded-cassandra</artifactId >
9- <version >4.1.1-SNAPSHOT </version >
9+ <version >4.1.1</version >
1010 <packaging >jar</packaging >
1111
1212 <description >Embedded Cassandra</description >
7272 <jacoco .version>0.8.12</jacoco .version>
7373 <jacoco .output.directory>${project.build.directory} /jacoco</jacoco .output.directory>
7474 <jacoco .report.output.directory>${project.build.directory} /site/jacoco</jacoco .report.output.directory>
75- <asciidoctor-maven-plugin .version>3.0.0 </asciidoctor-maven-plugin .version>
75+ <asciidoctor-maven-plugin .version>2.2.6 </asciidoctor-maven-plugin .version>
7676 </properties >
7777
7878
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ This section covers how to configure Embedded Cassandra.
1414include::{sources}/CassandraExamples.java[tag=version]
1515----
1616
17- NOTE: Defaults to *4.1.3 *.
17+ NOTE: Defaults to *4.1.7 *.
1818
1919CAUTION: Since *4.0-beta4*, Windows scripts were removed. https://issues.apache.org/jira/browse/CASSANDRA-16171[CASSANDRA-16171]
2020
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public class CassandraBuilder {
5656 /**
5757 * Default Cassandra version.
5858 */
59- public static final Version DEFAULT_VERSION = Version .parse ("4.1.3 " );
59+ public static final Version DEFAULT_VERSION = Version .parse ("4.1.7 " );
6060
6161 private static final AtomicInteger CASSANDRA_ID = new AtomicInteger ();
6262
Original file line number Diff line number Diff line change 5151class DefaultCassandraIntegrationTests {
5252
5353 private final CassandraBuilder builder = new CassandraBuilder ().configure (builder -> {
54- if (System .getenv ("CI" ) != null ) {
55- builder .startupTimeout (Duration .ofMinutes (10 ));
56- builder .jvmOptions ("-Xms512m" , "-Xmx512m" );
57- }
54+ builder .startupTimeout (Duration .ofMinutes (3 ));
55+ builder .jvmOptions ("-Xms512m" , "-Xmx512m" , "-Xss640k" );
5856 });
5957
6058 private final CassandraRunner runner = new CassandraRunner (this .builder );
You can’t perform that action at this time.
0 commit comments