Skip to content

Commit

Permalink
Bumped spring boot from 2.7.18 to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palsimen-datek committed Jun 14, 2024
1 parent 32661fa commit 13bd74f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'java'
id "io.spring.dependency-management" version "1.1.0"
id "org.springframework.boot" version "2.7.18"
id "io.spring.dependency-management" version "1.1.5"
id "org.springframework.boot" version "3.3.0"
id 'maven-publish'
id 'signing'
}

group 'no.datek'
version '0.20.0'
version '1.0.0'
final String JRUBY_VERSION = '9.4.7.0';

repositories {
Expand All @@ -17,7 +17,6 @@ repositories {

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'javax.servlet:javax.servlet-api:3.1.0'
implementation "org.jruby:jruby:$JRUBY_VERSION"
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/no/datek/slim/AssetsController.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package no.datek.slim;

import jakarta.servlet.http.HttpServletRequest;
import java.nio.file.Path;
import javax.servlet.http.HttpServletRequest;
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.ContentDisposition;
import org.springframework.http.HttpEntity;
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/ruby/string_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
require 'stringio'

class StringResponse
include javax.servlet.http.HttpServletResponse

attr_accessor :character_encoding, :content_type
attr_reader :writer

Expand Down

0 comments on commit 13bd74f

Please sign in to comment.