Occupancy-Planner-Team1 / Occupancy-Planner

OCCUPANCY PLANNER
https://it-designers-gruppe.de/
0 stars 0 forks source link

denpendencies #3

Closed codergod1337 closed 1 year ago

codergod1337 commented 1 year ago

wollen wir noch lombok hinzufügen? dann müssen wir keine konstruktoren und getter/ setter mehr erstellen. die müllen dann auch nicht den quellcode zu

codergod1337 commented 1 year ago

Das sollten nun alle benötigen dependencies sein:

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.18.26</version>
        <scope>provided</scope>
    </dependency>

    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-oauth2-client</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
    </dependency>
</dependencies>
codergod1337 commented 1 year ago

mainbranch hat alle dependencies enthalten