Changeset 140d098 for backend/pom.xml


Ignore:
Timestamp:
02/09/26 20:20:12 (5 months ago)
Author:
Andrej <asumanovski@…>
Branches:
master
Children:
3ebe47c
Parents:
793ce2c
Message:

Add auth

File:
1 edited

Legend:

Unmodified
Added
Removed
  • backend/pom.xml

    r793ce2c r140d098  
    3232    <dependencies>
    3333        <dependency>
     34            <groupId>io.github.cdimascio</groupId>
     35            <artifactId>dotenv-java</artifactId>
     36            <version>3.0.0</version>
     37        </dependency>
     38        <dependency>
    3439            <groupId>org.springframework.boot</groupId>
    3540            <artifactId>spring-boot-starter-data-jpa</artifactId>
     
    4752            <artifactId>spring-boot-starter-webmvc</artifactId>
    4853        </dependency>
    49 
     54        <dependency>
     55            <groupId>io.jsonwebtoken</groupId>
     56            <artifactId>jjwt-api</artifactId>
     57            <version>0.12.6</version>
     58        </dependency>
     59        <dependency>
     60            <groupId>io.jsonwebtoken</groupId>
     61            <artifactId>jjwt-impl</artifactId>
     62            <version>0.12.6</version>
     63            <scope>runtime</scope>
     64        </dependency>
     65        <dependency>
     66            <groupId>io.jsonwebtoken</groupId>
     67            <artifactId>jjwt-jackson</artifactId>
     68            <version>0.12.6</version>
     69            <scope>runtime</scope>
     70        </dependency>
    5071        <dependency>
    5172            <groupId>org.postgresql</groupId>
Note: See TracChangeset for help on using the changeset viewer.