131 lines
4.4 KiB
XML
131 lines
4.4 KiB
XML
<?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>
|
||
<version>3.4.2</version>
|
||
<relativePath/> <!-- lookup parent from repository -->
|
||
</parent>
|
||
<groupId>org.ccalm</groupId>
|
||
<artifactId>weather</artifactId>
|
||
<version>0.0.9-SNAPSHOT</version>
|
||
<name>weather</name>
|
||
<description>Weather APP</description>
|
||
<properties>
|
||
<java.version>21</java.version>
|
||
</properties>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>unidata</id>
|
||
<name>Unidata UCAR Repository</name>
|
||
<url>https://artifacts.unidata.ucar.edu/content/repositories/unidata-releases/</url>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.postgresql</groupId>
|
||
<artifactId>postgresql</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.logstash.logback</groupId>
|
||
<artifactId>logstash-logback-encoder</artifactId>
|
||
<version>6.6</version>
|
||
</dependency>
|
||
<!--dependency>
|
||
<groupId>org.json</groupId>
|
||
<artifactId>json</artifactId>
|
||
<version>20231013</version>
|
||
</dependency-->
|
||
<dependency>
|
||
<groupId>org.json</groupId>
|
||
<artifactId>json</artifactId>
|
||
<version>20240303</version>
|
||
</dependency>
|
||
<!-- Исключаю зависимость из другой библиотеки а то в логе конфликт -->
|
||
<dependency>
|
||
<groupId>com.vaadin.external.google</groupId>
|
||
<artifactId>android-json</artifactId>
|
||
<version>0.0.20131108.vaadin1</version>
|
||
<scope>runtime</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.json</groupId>
|
||
<artifactId>json</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
|
||
<!-- https://mvnrepository.com/artifact/edu.ucar/netcdfAll -->
|
||
<dependency>
|
||
<groupId>edu.ucar</groupId>
|
||
<artifactId>netcdfAll</artifactId>
|
||
<version>5.3.1</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
<version>2.6.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.webjars</groupId>
|
||
<artifactId>webjars-locator</artifactId>
|
||
<version>0.52</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.36</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
|
||
|
||
</dependencies>
|
||
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>build-info</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>2.22.2</version>
|
||
<configuration>
|
||
<systemPropertyVariables>
|
||
<spring.config.location>file:org_ccalm_weather.yml</spring.config.location>
|
||
</systemPropertyVariables>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
</build>
|
||
</project>
|