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
45 changes: 45 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#language: java
sudo: false
#install: true

#addons:
# sonarcloud:
# organization: "mmuzaf-github" # the key of the org you chose at step #3
# token:
# secure: ********* # encrypted value of your token
#script:
# JaCoCo is used to have code coverage, the agent has to be activated.
# the following command line builds the project, runs the tests with coverage
# and then execute the SonarCloud analysis
#- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar -P surefire-fork-count-1 -Dsonar.login=${SONARQUBE_TOKEN}

#script: "mvn cobertura:cobertura -P test"

#after_success:
# - bash <(curl -s https://codecov.io/bash) -t 6c7e8599-8bb3-40db-bbb6-02f533e0acd1

bundler_args: --retry 0

#env:
# global:
# - JVM_EXTRA_ARGS="--illegal-access=permit --add-exports=java.base/jdk.internal.misc=ALL-UNNAMED --add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-exports=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED --add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED --add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED -Djdk.tls.client.protocols=TLSv1.2"

#before_script:
# - echo "MAVEN_OPTS='-Pall-java,lgpl,examples,checkstyle,java-9+'" > ~/.mavenrc

script: "mvn install -P all-java,lgpl,examples,checkstyle,java-8 -DskipTests -Dmaven.javadoc.skip=true -B -V"

jdk:
- openjdk8

cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'

# Don't copy the following part if your usnig this project as a starting point of yours
#notifications:
# email: false
# webhooks:
# - secure: "YnouVsvmF9gDFMT9s8MQsHe5ARaO78SvNeU+MzGKB+l7we7Xge5Zmi6J1KOuOW7zoKkb/wCnUvs+wu9qr4K0VgmWb2wBOpO2c5p85GrSYjPKGwfeZHSmGUpHUoNeDNa32StbTn7oOqtisTbcCWAM3fCPK/HW2l6Mh6eLSsqrlXwCYek2NWWfNeWX0tw22ctMGX6c2I200mGtU3SxPLvzg6MC9AbJ5/VnMkr0tzJnJdQWFGP6Iv6kNBb982tijbdBiriUX6964IPC4XSboK/KFRoHEfxaQuB8rcc64ar4Yr0UIB7Cz2DY4hKi6XaC5RT0O10rfFbCf6UInpzsz2CC4ZMU2Tpnpew/Y7VxhDBXLdq3pkvZS8UXj9J5ivaTJeCIidfoxw7NF8ctPtgIvUI5SoC1V7bjMPTvTTFz7vqtvCUZbAecQgM88MKGyYPD2g4HxzGL7vCGfPSOCMsxySemBkBElqPvDRVLrDNNPJNEkUZ/yQxaFCZpITPD787MyKjeI9NlkG3htZ+i8t2BYmQj28JzoADY+wsdufK8WlkWANISfFyEzyo+JlOoXGX/gfHWpWhaWn3klIDm8LED3FM4/wNRT6yg8BZ1BEQ6D6RSG5SrhYwJPRr6bFzh7MA3+mkO7GW5SVZNVX2Q0qmigmKd6cJBGD3/V0r74LtwRH+sKxI="
# on_start: always
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

<a href="https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_RunAll&branch_IgniteTests24Java8=%3Cdefault%3E"><img src="https://ci.ignite.apache.org/app/rest/builds/buildType:(id:IgniteTests24Java8_RunAll)/statusIcon.svg"/></a>

[![Build Status](https://travis-ci.com/Mmuzaf/ignite.svg?branch=master)](https://travis-ci.com/Mmuzaf/ignite)

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion config/ignite-log4j.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
<!-- Default settings. -->
<root>
<!-- Print out all info by default. -->
<level value="INFO"/>
<level value="OFF"/>

<!-- Uncomment to enable logging to console. -->
<!--
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,18 @@
<id>test</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down
11 changes: 11 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
sonar.projectKey=org.apache.ignite:apache-ignite
sonar.projectName=apache-ignite

sonar.host.url=https://sonarcloud.io
sonar.organization=mmuzaf-github
sonar.login=${SONARQUBE_TOKEN}
sonar.sources=src
sonar.exclusions=node_modules/**/*

sonar.java.source=1.8
sonar.java.binaries=.