Changeset 43e476a


Ignore:
Timestamp:
05/23/26 17:13:31 (4 months ago)
Author:
MBK <marija.karapandzova@…>
Branches:
master
Children:
946877f
Parents:
daacc57
Message:

Add JWT authentication and User entity with flyway migrations

Files:
10 added
1 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    rdaacc57 r43e476a  
    1212    <artifactId>medora4</artifactId>
    1313    <version>0.0.1-SNAPSHOT</version>
    14     <name>medora4</name>
    15     <description>medora4</description>
     14    <name>medora5</name>
     15    <description>medora5</description>
    1616    <url/>
    1717    <licenses>
     
    9292            <version>7.2.5</version>
    9393        </dependency>
     94
     95        <!-- JWT for authentication -->
     96        <dependency>
     97            <groupId>io.jsonwebtoken</groupId>
     98            <artifactId>jjwt-api</artifactId>
     99            <version>0.12.3</version>
     100        </dependency>
     101        <dependency>
     102            <groupId>io.jsonwebtoken</groupId>
     103            <artifactId>jjwt-impl</artifactId>
     104            <version>0.12.3</version>
     105            <scope>runtime</scope>
     106        </dependency>
     107        <dependency>
     108            <groupId>io.jsonwebtoken</groupId>
     109            <artifactId>jjwt-jackson</artifactId>
     110            <version>0.12.3</version>
     111            <scope>runtime</scope>
     112        </dependency>
    94113    </dependencies>
    95114
     
    114133
    115134</project>
    116 
    117 
Note: See TracChangeset for help on using the changeset viewer.