URLShortener/pom.xml

269 lines
8.4 KiB
XML
Raw Permalink Normal View History

2024-02-01 23:44:46 +05:30
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2024-02-20 02:10:11 +05:30
<version>3.2.2</version>
2024-02-01 23:44:46 +05:30
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.bitmutex</groupId>
<artifactId>shortener</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>URLShortener</name>
<description>URLShortener</description>
<properties>
<java.version>21</java.version>
</properties>
<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-jdbc</artifactId>
</dependency>
2024-02-15 03:02:13 +05:30
2024-02-01 23:44:46 +05:30
<!--QRCODE -->
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
2024-02-15 03:02:13 +05:30
<version>3.4.1</version>
2024-02-01 23:44:46 +05:30
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
2024-02-15 03:02:13 +05:30
<version>3.4.1</version>
2024-02-01 23:44:46 +05:30
</dependency>
<!--QRCODE -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.2.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</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>
2024-02-17 19:41:04 +05:30
2024-02-01 23:44:46 +05:30
<dependency>
<groupId>org.springframework.boot</groupId>
2024-02-17 19:41:04 +05:30
<artifactId>spring-boot-starter-logging</artifactId>
2024-02-01 23:44:46 +05:30
</dependency>
2024-02-17 19:41:04 +05:30
2024-02-01 23:44:46 +05:30
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2024-02-15 03:02:13 +05:30
2024-02-01 23:44:46 +05:30
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.0-android</version>
</dependency>
<!-- JWT-->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
2024-02-15 03:02:13 +05:30
<version>0.9.1</version>
2024-02-01 23:44:46 +05:30
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
2024-02-17 19:27:14 +05:30
<version>24.1.0</version>
2024-02-01 23:44:46 +05:30
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>axios</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity6</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.razorpay/razorpay-java -->
<dependency>
<groupId>com.razorpay</groupId>
<artifactId>razorpay-java</artifactId>
<version>1.4.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-oauth2-client</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
2024-02-15 03:02:13 +05:30
<version>7.9.0</version>
2024-02-01 23:44:46 +05:30
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
<version>2.1.0</version>
</dependency>
2024-02-15 03:02:13 +05:30
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
2024-02-01 23:44:46 +05:30
</dependencies>
2024-02-15 03:02:13 +05:30
<!-- Set packaging to WAR -->
<packaging>${project.packaging}</packaging>
2024-02-01 23:44:46 +05:30
<build>
2024-02-15 16:50:39 +05:30
<finalName>${project.artifactId}</finalName>
2024-02-15 03:02:13 +05:30
2024-02-19 01:03:25 +05:30
<plugins>
2024-02-01 23:44:46 +05:30
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
2024-02-15 03:02:13 +05:30
<properties>
<property>
<name>surefire.testng.verbose</name>
<value>10</value>
</property>
</properties>
2024-02-01 23:44:46 +05:30
</configuration>
</plugin>
2024-02-15 03:02:13 +05:30
2024-02-01 23:44:46 +05:30
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2024-02-15 03:02:13 +05:30
<version>3.2.2</version>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
2024-02-01 23:44:46 +05:30
<executions>
<execution>
<id>pre-integration-test</id>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>post-integration-test</id>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
2024-02-15 03:02:13 +05:30
2024-02-01 23:44:46 +05:30
</plugins>
2024-02-19 01:03:25 +05:30
2024-02-01 23:44:46 +05:30
</build>
2024-02-15 03:02:13 +05:30
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<project.packaging>jar</project.packaging>
</properties>
</profile>
<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<project.packaging>war</project.packaging>
</properties>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>github</id>
<name>shortener</name>
<url>https://maven.pkg.github.com/aamitn/URLShortener</url>
</repository>
</distributionManagement>
2024-02-15 03:02:13 +05:30
2024-02-01 23:44:46 +05:30
</project>