На работе попытался поработать :-)

This commit is contained in:
Igor I
2025-01-06 17:55:54 +05:00
parent 8aaf1c7819
commit 7cf3d879e4
7 changed files with 208 additions and 191 deletions

24
pom.xml
View File

@ -12,10 +12,9 @@
<artifactId>weather</artifactId>
<version>0.0.7-SNAPSHOT</version>
<name>weather</name>
<description>Demo project for Spring Boot</description>
<description>Weather APP</description>
<properties>
<java.version>17</java.version>
<start-class>org.ccalm.weather.WeatherApplication</start-class>
<java.version>21</java.version>
</properties>
<repositories>
@ -24,11 +23,6 @@
<name>Unidata UCAR Repository</name>
<url>https://artifacts.unidata.ucar.edu/content/repositories/unidata-releases/</url>
</repository>
<!--repository>
<id>boundless</id>
<name>Boundless Repository</name>
<url>https://repo.boundlessgeo.com/main/</url>
</repository-->
</repositories>
<dependencies>
@ -36,7 +30,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
@ -47,22 +40,12 @@
<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>
<!-- https://mvnrepository.com/artifact/org.gdal/gdal -->
<!--dependency>
<groupId>org.gdal</groupId>
<artifactId>gdal</artifactId>
<version>2.4.0</version>
<scope>system</scope>
<systemPath>O:/projects/_Libs/gdal-2.4.0.jar</systemPath>
</dependency-->
<!-- https://mvnrepository.com/artifact/edu.ucar/netcdfAll -->
<dependency>
<groupId>edu.ucar</groupId>
@ -85,7 +68,7 @@
</goals>
</execution>
</executions>
</plugin-->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@ -100,5 +83,4 @@
</plugins>
</build>
</project>