Skip to content

Commit

Permalink
Endre navn på prosjekter
Browse files Browse the repository at this point in the history
  • Loading branch information
oyms committed Oct 16, 2024
1 parent 98bfc9a commit 19c379e
Show file tree
Hide file tree
Showing 29 changed files with 13 additions and 13 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("io.spring.dependency-management") version "1.1.6"
}

group = "no.bekk.oppdrift"
group = "no.bekk.oppdrift.backend"
version = "0.0.1-SNAPSHOT"

java {
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions del_1/DatabaseIntegrasjon/backend/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = "no.bekk.oppdrift.backend"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package no.bekk.oppdrift.dbintegrasjon
package no.bekk.oppdrift.backend

import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spring.application.name=no.bekk.oppdrift.backend
server.port=8080
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package no.bekk.oppdrift.dbintegrasjon
package no.bekk.oppdrift.backend

import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
Expand Down

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion del_1/database-integrasjon.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Del 2 av løsning fra scratch

Ta utgangspunkt i det som ble gjort i [del 1](../del_0/nytt-prosjekt.md) og jobb videre med samme kodebase.
Du kan også åpne den [her](./DatabaseIntegrasjon), om du ikke fikk gjort oppgaven sist.
Du kan også åpne den [her](./DatabaseIntegrasjon/backend), om du ikke fikk gjort oppgaven sist.


<details>
Expand Down
2 changes: 1 addition & 1 deletion del_2/Spring-REST.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Ta utgangspunkt i det som ble gjort i [del 0 - nytt prosjekt](./../del_0/nytt-prosjekt.md) og [del 2 - database integrasjon](./../del_1/database-integrasjon.md)

(Du kan finne en ferdig løsning på oppgaven fra forrige økt [her](../del_1/DatabaseIntegrasjon/).)
(Du kan finne en ferdig løsning på oppgaven fra forrige økt [her](./spring_rest/backend/).)

I dag skal vi implementere REST-endepunkt i Spring-applikasjonen vår.
Når vi er ferdig med denne delen vil vi ha en applikasjon med en database,
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("io.spring.dependency-management") version "1.1.6"
}

group = "no.bekk.oppdrift"
group = "no.bekk.oppdrift.backend"
version = "0.0.1-SNAPSHOT"

java {
Expand Down
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions del_2/spring_rest/backend/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = "no.bekk.oppdrift.backend"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package no.bekk.oppdrift.dbintegrasjon
package no.bekk.oppdrift.backend

import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
spring.application.name=spring_rest
spring.application.name=no.bekk.oppdrift.backend
server.port=8080
spring.datasource.url=jdbc:h2:file:./testdb
spring.datasource.driverClassName=org.h2.Driver
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package no.bekk.oppdrift.dbintegrasjon
package no.bekk.oppdrift.backend

import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
Expand Down
1 change: 0 additions & 1 deletion del_2/spring_rest/rest/settings.gradle.kts

This file was deleted.

0 comments on commit 19c379e

Please sign in to comment.