8000 Updated README & Build Script by Im-Fran · Pull Request #36 · TheProgramSrc/SimpleCore-LoggingModule · GitHub
[go: up one dir, main page]

Skip to content

Updated README & Build Script #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 15, 2023
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.3.1 - Snapshot
* Fix module.properties file
* Update README.md

## v0.3.0 - Snapshot
* Updated to gradle kotlin dsl
* Added sonatype
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![](https://jitci.com/gh/TheProgramSrc/SimpleCore-LoggingModule/svg)](https://jitci.com/gh/TheProgramSrc/SimpleCore-LoggingModule)
[![](https://jitpack.io/v/TheProgramSrc/SimpleCore-LoggingModule.svg)](https://jitpack.io/#TheProgramSrc/SimpleCore-LoggingModule)
[![](https://img.shields.io/nexus/s/xyz.theprogramsrc/loggingmodule?server=https%3A%2F%2Fs01.oss.sonatype.org)]()


# SimpleCore-LoggingModule
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ tasks {
}

dokkaHtml {
val dokkaFolder = file(project.buildDir.absolutePath + "/dokka")
outputDirectory.set(dokkaFolder)
outputDirectory.set(file(project.buildDir.absolutePath + "/dokka"))

}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import org.apache.logging.log4j.message.Message
* @param result The result to use if the filter matches
* @param filteredStrings The strings that a message must contain to be filtered
*/
open class LogFilter(val result: FilterResult = FilterResult.NEUTRAL, val filteredStrings: Array<String>): AbstractFilter() {
open class LogFilter(private val result: FilterResult = FilterResult.NEUTRAL, private val filteredStrings: Array<String>): AbstractFilter() {

/**
* Extra requirements for a string filter to be matched
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/module.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name=LoggingModule
description=@description@
version=@version@
author=TheProgramSrc
repository-id=loggingmodule
module-id=loggingmodule
0