Skip to content

Commit

Permalink
v0.12 Libraries upgrading and minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Plizga committed Oct 10, 2019
1 parent 64009e9 commit b14cd2c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AnaLóg
# :mag_right:AnaLóg

AnaLóg (pronounced with stressed “*o*”) is a tool for convenient real-time displaying of various logs in your browser.

Expand Down Expand Up @@ -65,7 +65,7 @@ http://localhost:8083/#/k8s://deployment/my-deployment
After that you should see last several lines of the log in your browser and the new records must be added to them as they appear in the log source.

## Where to get help?
Because AnaLog is still under development it's not provided with neither comprehensive documentation nor support. Some basic information can be found on [Wiki pages](https://github.com/Toparvion/analog/wiki).
Because AnaLog is still under development, it's not provided with neither comprehensive documentation nor support. Some basic information can be found on [Wiki pages](https://github.com/Toparvion/analog/wiki).
Nevertheless the author would be glad to help you with any questions concerning AnaLog usage. You can ask for help by means of an [issue](https://github.com/Toparvion/analog/issues/new) or contact the author [directly](mailto:[email protected]).

## Contributing
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.bmuschko.gradle.docker.tasks.image.Dockerfile

buildscript {
ext {
springBootVersion = '2.2.0.M1'
springBootVersion = '2.2.0.RC1'
}
repositories {
mavenCentral()
Expand All @@ -27,16 +27,16 @@ apply plugin: 'com.bmuschko.docker-remote-api'

sourceCompatibility = JavaVersion.VERSION_12
targetCompatibility = JavaVersion.VERSION_12
tasks.withType(JavaCompile).each {
it.options.compilerArgs.add('--enable-preview') // to support Java new language features
}
//tasks.withType(JavaCompile).each {
// it.options.compilerArgs.add('--enable-preview') // to support Java new language features;
//} // disabled to keep the app compatible with future JDK versions

bootJar {
archiveFileName = 'analog.jar'
manifest {
attributes(
"Implementation-Title": "AnaLog",
"Implementation-Version": archiveVersion,
"Implementation-Version": archiveVersion.get(),
"Implementation-Vendor": "Toparvion"
)
}
Expand All @@ -56,7 +56,7 @@ dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'
implementation group: 'org.springframework.boot' , name: 'spring-boot-starter-websocket'
implementation group: 'net.bull.javamelody', name: 'javamelody-spring-boot-starter', version: '1.75.0'
implementation group: 'net.bull.javamelody', name: 'javamelody-spring-boot-starter', version: '1.78.0'

implementation group: 'org.springframework.integration', name: 'spring-integration-file'
implementation group: 'org.springframework.integration', name: 'spring-integration-rmi'
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version=0.12
version=0.12.1

docker.base-image=bellsoft/liberica-openjdk-alpine:11
docker.base-image=bellsoft/liberica-openjdk-alpine:12
docker.url=tcp://localhost:2375
docker.registry.url=<specify your own>
docker.registry.username=<specify your own>
Expand Down

0 comments on commit b14cd2c

Please sign in to comment.