Skip to content
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
executors:
openjdk_executor:
docker:
- image: cimg/openjdk:17.0.2
- image: circleci/openjdk:11.0.8-jdk
environment:
_JAVA_OPTIONS: "-Xmx3g"
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:15-jdk-slim
FROM openjdk:11-jdk-slim
COPY . /mms
WORKDIR /mms
RUN ./gradlew --no-daemon bootJar
Expand Down
3 changes: 0 additions & 3 deletions example/example.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ dependencies {
)
}

bootJar {
duplicatesStrategy(DuplicatesStrategy.INCLUDE)
}
//https://stackoverflow.com/questions/61197984/bootjar-mavenjar-artifact-wasnt-produced-by-this-build
configurations {
[apiElements, runtimeElements].each {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version=4.0.6
version=4.0.7
group=org.openmbee.mms

springBootVersion=2.3.2.RELEASE
springBootVersion=2.2.6.RELEASE
springFrameworkVersion=5.2.5.RELEASE
springSecurityVersion=5.3.1.RELEASE
springDataVersion=2.2.6.RELEASE
Expand Down