Skip to content

Commit

Permalink
20210306 upgrade to jooby 2.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
der3318 committed Mar 6, 2021
1 parent 98e5d05 commit 260dd8c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## ⚡️ Social Light

![ver](https://img.shields.io/badge/version-1.0.0-blue.svg)
![ver](https://img.shields.io/badge/version-1.0.1-blue.svg)
![jre](https://img.shields.io/badge/JRE-8%2B-green.svg)
![build](https://img.shields.io/badge/build-passing-brightgreen.svg)
![coverage](https://img.shields.io/badge/code%20coverage-84%25-yellow.svg)
Expand All @@ -24,7 +24,7 @@ The project provides a set of basic application programming interfaces (API) req
|Step|Content|
|:-:|:-|
|#1|Install JRE 8+|
|#2|Download zipped JAR and config files from [release](https://github.com/der3318/social-light/releases/download/1.0.0/social-light.zip)|
|#2|Download zipped JAR and config files from [release](https://github.com/der3318/social-light/releases/download/1.0.1/social-light.zip)|
|#3|`$ java -jar social-light.jar port.http=[PORT] admin.token=[TOKEN]` to start the server|
|#4|Check `http://[IP]:[PORT]/admin?token=[TOKEN]` for the admin dashboard|
|#5|Use [API](#application-programming-interface---about) under `http://[IP]:[PORT]/api/v1/...` to develop your own application|
Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
kotlinVersion = "1.3.50"
joobyVersion = "2.6.1"
joobyVersion = "2.9.5"
}

repositories {
Expand All @@ -11,7 +11,7 @@ buildscript {
}

dependencies {
classpath "com.google.gradle:osdetector-gradle-plugin:1.4.0"
classpath "com.google.gradle:osdetector-gradle-plugin:1.6.2"
classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"

classpath "io.jooby:jooby-gradle-plugin:$joobyVersion"
Expand All @@ -30,7 +30,7 @@ apply plugin: "jacoco"
apply plugin: "maven"

group "der3318"
version "1.0.0"
version "1.0.1"
mainClassName = "der3318.App"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -53,18 +53,18 @@ dependencyManagement {

dependencies {
/** template engine */
compile "io.jooby:jooby-pebble:2.6.1"
compile "io.jooby:jooby-pebble:2.9.5"

/** database interface */
compile "io.jooby:jooby-hikari:2.6.1"
compile "io.jooby:jooby-jdbi:2.6.1"
compile "io.jooby:jooby-hikari:2.9.5"
compile "io.jooby:jooby-jdbi:2.9.5"

/** database dependency */
compile "com.h2database:h2:1.3.148"
compile "com.h2database:h2:1.4.200"
compile "org.xerial:sqlite-jdbc:3.8.11.2"

/** json utility */
compile "io.jooby:jooby-jackson:2.6.1"
compile "io.jooby:jooby-jackson:2.9.5"

compile "io.jooby:jooby-utow"
compile "ch.qos.logback:logback-classic"
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,35 @@
<modelVersion>4.0.0</modelVersion>
<groupId>der3318</groupId>
<artifactId>social-light</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<dependencies>
<dependency>
<groupId>io.jooby</groupId>
<artifactId>jooby</artifactId>
<version>2.6.1</version>
<version>2.9.5</version>
</dependency>
<dependency>
<groupId>io.jooby</groupId>
<artifactId>jooby-pebble</artifactId>
<version>2.6.1</version>
<version>2.9.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.jooby</groupId>
<artifactId>jooby-hikari</artifactId>
<version>2.6.1</version>
<version>2.9.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.jooby</groupId>
<artifactId>jooby-jdbi</artifactId>
<version>2.6.1</version>
<version>2.9.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.148</version>
<version>1.4.200</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -43,7 +43,7 @@
<dependency>
<groupId>io.jooby</groupId>
<artifactId>jooby-jackson</artifactId>
<version>2.6.1</version>
<version>2.9.5</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>io.jooby</groupId>
<artifactId>jooby-bom</artifactId>
<version>2.6.1</version>
<version>2.9.5</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion public/views/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h5>
<div id="footer">
<br><br>
{% block footer %}
<div class="ui center aligned grid"> © Copyright 2020 der3318</div>
<div class="ui center aligned grid"> © Copyright 2021 der3318</div>
{% endblock %}
</div>

Expand Down

0 comments on commit 260dd8c

Please sign in to comment.