Changeset d14176d for pom.xml


Ignore:
Timestamp:
07/07/23 12:14:58 (12 months ago)
Author:
HristijanMitic00 <hristijan.mitic.01@…>
Branches:
main
Parents:
1dd9226
Message:

First commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    r1dd9226 rd14176d  
    1818    </properties>
    1919    <dependencies>
     20
     21        <dependency>
     22            <groupId>org.springframework.boot</groupId>
     23            <artifactId>spring-boot-starter-thymeleaf</artifactId>
     24        </dependency>
     25
     26        <dependency>
     27            <groupId>org.springframework.boot</groupId>
     28            <artifactId>spring-boot-starter-web</artifactId>
     29        </dependency>
     30
    2031        <dependency>
    2132            <groupId>org.springframework.boot</groupId>
    2233            <artifactId>spring-boot-starter-data-jpa</artifactId>
    2334        </dependency>
     35
     36        <dependency>
     37            <groupId>org.flywaydb</groupId>
     38            <artifactId>flyway-maven-plugin</artifactId>
     39            <version>6.2.3</version>
     40        </dependency>
     41
     42
    2443        <dependency>
    2544            <groupId>org.springframework.boot</groupId>
    2645            <artifactId>spring-boot-starter-security</artifactId>
    2746        </dependency>
    28         <dependency>
    29             <groupId>org.springframework.boot</groupId>
    30             <artifactId>spring-boot-starter-thymeleaf</artifactId>
    31         </dependency>
    32         <dependency>
    33             <groupId>org.springframework.boot</groupId>
    34             <artifactId>spring-boot-starter-web</artifactId>
    35         </dependency>
     47
    3648        <dependency>
    3749            <groupId>org.thymeleaf.extras</groupId>
    3850            <artifactId>thymeleaf-extras-springsecurity5</artifactId>
    3951        </dependency>
     52
     53        <dependency>
     54            <groupId>com.h2database</groupId>
     55            <artifactId>h2</artifactId>
     56        </dependency>
     57
    4058
    4159        <dependency>
     
    5068            <optional>true</optional>
    5169        </dependency>
     70
     71        <dependency>
     72            <groupId>com.auth0</groupId>
     73            <artifactId>java-jwt</artifactId>
     74            <version>3.7.0</version>
     75        </dependency>
     76
    5277        <dependency>
    5378            <groupId>org.springframework.boot</groupId>
    5479            <artifactId>spring-boot-starter-test</artifactId>
    5580            <scope>test</scope>
     81            <exclusions>
     82                <exclusion>
     83                    <groupId>org.junit.vintage</groupId>
     84                    <artifactId>junit-vintage-engine</artifactId>
     85                </exclusion>
     86            </exclusions>
    5687        </dependency>
     88
    5789        <dependency>
    58             <groupId>org.springframework.security</groupId>
    59             <artifactId>spring-security-test</artifactId>
    60             <scope>test</scope>
     90            <groupId>junit</groupId>
     91            <artifactId>junit</artifactId>
    6192        </dependency>
     93
     94        <dependency>
     95            <groupId>org.seleniumhq.selenium</groupId>
     96            <artifactId>selenium-java</artifactId>
     97        </dependency>
     98
     99        <dependency>
     100            <groupId>org.seleniumhq.selenium</groupId>
     101            <artifactId>htmlunit-driver</artifactId>
     102        </dependency>
     103
    62104    </dependencies>
    63105
Note: See TracChangeset for help on using the changeset viewer.