Conversation
Initial code including GitHub workflows and templates for issues, commits and PRs. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Removed deb and rpm builds. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Removed SNAPSHOT from version. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Changed version to 1.0.0 as jpackage DMG build requires the first number in an app-version not to be zero or negative Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Added jlinkZip to create an artifact to be uploaded. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Uses constant for JAVA version provided by gradle. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Adjusted jpackage output directories. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Upload JaCoCo code coverage to CodeClimate. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Adds support for TravisCI and Coverall. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Includes coveralls in GitHub CI. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Adds workflows for development/feature branches Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Adds release workflow Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
buildSrc/build.gradle
Outdated
| implementation( | ||
| gradleApi() | ||
| ) | ||
| } No newline at end of file |
There was a problem hiding this comment.
Expected a newline at the end of the file.
src/main/java/module-info.java
Outdated
| */ | ||
| module com.github.gregoranders.template { | ||
| requires org.slf4j; | ||
| } No newline at end of file |
There was a problem hiding this comment.
Expected a newline at the end of the file.
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| * SOFTWARE. | ||
| */ No newline at end of file |
There was a problem hiding this comment.
Expected a newline at the end of the file.
config/checkstyle/checkstyle.xml
Outdated
| name="file" | ||
| value="${checkstyle.suppressions.file}"/> | ||
| </module> | ||
| </module> No newline at end of file |
There was a problem hiding this comment.
Expected a newline at the end of the file.
src/main/resources/logback.xml
Outdated
| <root level="DEBUG"> | ||
| <appender-ref ref="Console"/> | ||
| </root> | ||
| </configuration> No newline at end of file |
There was a problem hiding this comment.
Expected a newline at the end of the file.
Adds gradle, gradlew and gradlew.bat to ignored files for CodeClimate. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
| <suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
| <suppress> | ||
| <notes><![CDATA[ | ||
| file name: commons-io-2.6.jar |
There was a problem hiding this comment.
Expected an indentation at 4 instead of at 3.
| <suppress> | ||
| <notes><![CDATA[ | ||
| file name: commons-io-2.6.jar | ||
| ]]></notes> |
There was a problem hiding this comment.
Expected an indentation at 4 instead of at 3.
| <packageUrl regex="true">^pkg:maven/commons\-io/commons\-io@.*$</packageUrl> | ||
| <cve>CVE-2021-29425</cve> | ||
| </suppress> | ||
| </suppressions> No newline at end of file |
There was a problem hiding this comment.
Expected a newline at the end of the file.
| @@ -0,0 +1,70 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |||
| xmlns:dc="https://www.owasp.org/index.php/OWASP_Dependency_Check_Suppression" | |||
There was a problem hiding this comment.
Expected an indentation at 12 instead of at 11.
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:dc="https://www.owasp.org/index.php/OWASP_Dependency_Check_Suppression" | ||
| id="suppressions" |
There was a problem hiding this comment.
Expected an indentation at 12 instead of at 11.
Adds more fixes according to issues reported be codacy and codeclimate. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
Adds more fixes according to issues reported be codacy and codeclimate. Signed-off-by: Gregor Anders <gregor.anders@gmail.com>
|
Code Climate has analyzed commit 96293fc and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 100.0% (50% is the threshold). This pull request will bring the total coverage in the repository to 100.0%. View more on Code Climate. |
Initial code merge into master