forked from FINAKON/HelpProject
82 lines
2.3 KiB
XML
82 lines
2.3 KiB
XML
|
<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>
|
||
|
|
||
|
<groupId>com.contextual</groupId>
|
||
|
<artifactId>contextual-help</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>contextual-help</name>
|
||
|
<description>Spring Boot backend for contextual help service</description>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>3.2.5</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
|
||
|
<properties>
|
||
|
<java.version>17</java.version>
|
||
|
<spring-cloud.version>2023.0.0</spring-cloud.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Spring Boot Web -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Jackson for JSON -->
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Optional: DevTools for live reload -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Optional: Spring Boot Test -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>javax.annotation</groupId>
|
||
|
<artifactId>javax.annotation-api</artifactId>
|
||
|
<version>1.3.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>3.2.5</version>
|
||
|
<configuration>
|
||
|
<mainClass>com.contextual.help.ContextualHelpApplication</mainClass>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<!-- Spring Boot Maven Plugin -->
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>3.2.5</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|
||
|
|