-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update pom after release * Update README.md * fix before deploy script * Clean/pom and package (#118) * Add UTF-8 encoding * Rename package * fix readme * added coverage * Excluded openjdk job if branch is master (#119) * Excluded openjdk job if branch is master * test on develop branch * use matrix for build config * test on develop branch * Set back develop branch * Update issue templates Updated templates * Feature/spot bugs (#126) * Include spotbugs to build * Fix bugs + parse when retrieving TAF AMD * Feature/rmk (#110) * Handle parsing of AO1 and AO2 tokens * Parse remark Wind peak Added english and french translations * Handle parsing of Windshift in remarks * Handle decoding of tower visibility * Parse surface visibility in remarks * Fix visibility regex * Handle decoding of variable prevailing visibility * Handle decoding of sector visibility * Handle visibility at second location * Handle tornadic activity in remark * fix typo * Use replaceFirst instead of replaceAll * Fix coverage * Handle parse of precipitation in remarks Updated pregMatch method. * Added test and translation for thunderstorm beg end * Handle thunderstorm location * Handle parse of hail size in remark * Parse snow pellet intensity in remark * Parse virga in remarks * Handle parse of ceiling height in remark * Parse obscurations in remarks * fix tests * Parse Variable sky condition in remarks * Parse ceiling at second location in remarks * Clean traduction keys * Use Message attribute instead of calling static * Added logging on unknown token in remark * Add missing translation keys * Add RemarkParser to AbstractPArser Fix test * fix conflicts * remove virga from remarkParser since it is single token * Feature/rmk sea level pressure (#123) * Handle parse of sea level pressure in remark * Handle SLPNO token * fix tests * Feature/rmk pressure rinsing falling rapidly (#124) * Handle parse of sea level pressure in remark * Handle SLPNO token * Handle parse of pressure rising and falling rapidly * Feature/rmk snow increasing rapidly (#125) * Handle parse of sea level pressure in remark * Handle SLPNO token * fix tests * Handle parse of pressure rising and falling rapidly * Handle parse of snow incresing rapidly in remarks * deactivate checkstyle * remove cases of parse method * set back checkstyle * Include sonarCloud in build (#131) * Include sonarCloud in build * Added scripts for install and deploy * fix travis yml * remove sonar from cache * Added url for sonar * install script * Fix addons * added branchname for sonar * update script * disable codeclimate checkstyle * remove codeclimate * Update script.sh * Update script.sh * Add toString method in package model.trend.validity (#129) * Add to string method for entities in model (#130) * Add to string method for entities in model * Add tests on toString method Signed-off-by: jk KPADEY <[email protected]> * Fix codacy + test Signed-off-by: jk KPADEY <[email protected]> * Update readme (#132) * Feature/to string metar (#133) * updated script to add PR sonar Signed-off-by: jk KPADEY <[email protected]> * Added toString to - metar class - Abstract trends class Fix toString in - AbstractWeatherContainer Added asserts on metar toString Signed-off-by: jk KPADEY <[email protected]> * fix review Signed-off-by: jk KPADEY <[email protected]>
- Loading branch information
Showing
66 changed files
with
1,327 additions
and
166 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
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
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
set -ev | ||
|
||
if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST = "false" ] | ||
then | ||
git config --local user.name $NAME | ||
git config --local user.email $EMAIL | ||
version=$(grep -Po -m1 '<version>(.*)</version>' pom.xml | grep -Po '(\d\.\d)') | ||
git tag $version | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ];then | ||
echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import | ||
echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ];then | ||
if [ "$TRAVIS_PULL_REQUEST" = "false" ];then | ||
mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent deploy sonar:sonar --settings .settings.xml -P release,ossrh | ||
else | ||
mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar | ||
fi | ||
else | ||
mvn install | ||
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
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
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
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
5 changes: 5 additions & 0 deletions
5
src/main/java/io/github/mivek/internationalization/package-info.java
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,5 @@ | ||
/** | ||
* @author mivek | ||
* | ||
*/ | ||
package io.github.mivek.internationalization; |
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
Oops, something went wrong.