Skip to content
Snippets Groups Projects
Select Git revision
  • ea9adc42ce0970f4bc344df6cf8714c42dfce1de
  • main default protected
  • 12-import-working-spaces-csv
  • 15-add-form-for-adding-latitude-and-longitude-positions
  • login
  • feedback
  • added-json-code
  • editing-about
  • imporoved-location-v2
  • improved-contact-us
  • improved-location.html
  • improved-location.htmlv3
  • Filtering
  • 3-ability-to-easily-contact-each-working-space-2
  • addedHtmlPagesAndUserInterface
  • 1-as-a-user-i-want-a-presentable-user-interface
  • 3-ability-to-easily-contact-each-working-space
  • 6-as-a-moderator-i-want-to-be-able-to-add-working-spaces
  • interactive-map
  • workspace-list
  • WebPages
21 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 1.82 KiB
    plugins {
        id 'org.springframework.boot' version '2.5.6'
        id 'io.spring.dependency-management' version '1.0.11.RELEASE'
        id 'java'
    }
    
    group = 'com.example'
    version = '0.0.1-SNAPSHOT'
    sourceCompatibility = '11'
    
    configurations {
        compileOnly {
            extendsFrom annotationProcessor
        }
    }
    
    bootRun {
        systemProperty 'spring.profiles.active', 'maria'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'commons-io:commons-io:2.8.0'
        implementation 'io.jsonwebtoken:jjwt:0.9.1'
        implementation 'org.springframework.session:spring-session-jdbc:2.4.3'
        implementation 'org.springframework.boot:spring-boot-starter-validation'
        implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
        implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
        implementation 'org.springframework.boot:spring-boot-starter-security'
        implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
        implementation 'org.springframework.boot:spring-boot-starter-web'
        implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
        implementation 'org.jetbrains:annotations:20.1.0'
        implementation 'org.springframework.boot:spring-boot-starter-validation'
        implementation 'org.projectlombok:lombok:1.18.20'
        implementation 'org.projectlombok:lombok:1.18.20'
        implementation 'org.projectlombok:lombok:1.18.20'
        compileOnly 'org.projectlombok:lombok'
        developmentOnly 'org.springframework.boot:spring-boot-devtools'
        runtimeOnly 'com.h2database:h2'
        runtimeOnly 'org.mariadb.jdbc:mariadb-java-client:2.7.4'
        
        annotationProcessor 'org.projectlombok:lombok'
        testImplementation 'org.springframework.boot:spring-boot-starter-test'
        testImplementation 'org.springframework.security:spring-security-test'
    }
    
    test {
        useJUnitPlatform()
    }