+Таблица даты

This commit is contained in:
2024-05-01 17:34:52 +05:00
parent 18d7a228f9
commit 6bdcabc5d1
5 changed files with 97 additions and 22 deletions

22
pom.xml
View File

@ -10,13 +10,20 @@
</parent>
<groupId>org.ccalm</groupId>
<artifactId>weather</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.4-SNAPSHOT</version>
<name>weather</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
<java.version>17</java.version>
<start-class>org.ccalm.weather.WeatherApplication</start-class>
</properties>
<!--repositories>
<repository>
<id>boundless</id>
<name>Boundless Repository</name>
<url>https://repo.boundlessgeo.com/main/</url>
</repository>
</repositories-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
@ -48,12 +55,11 @@
<groupId>edu.ucar</groupId>
<artifactId>netcdfAll</artifactId>
<version>5.3.1</version>
<!-- Look: https://newbedev.com/how-to-include-system-dependencies-in-war-built-using-maven
<type>jar</type>
<scope>system</scope>
<systemPath>${basedir}/lib/netcdfAll-5.3.1.jar</systemPath>
-->
<systemPath>O:/projects/Workspace_Java/CCALM_weather/src/main/lib/netcdfAll-5.3.1.jar</systemPath>
</dependency>
</dependencies>
<build>
@ -63,7 +69,7 @@
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
@ -71,7 +77,7 @@
<id>install-external</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/src/main/lib/netcdfAll-5.3.1.jar</file>
<file>O:/projects/Workspace_Java/CCALM_weather/src/main/lib/netcdfAll-5.3.1.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>edu.ucar</groupId>
<artifactId>netcdfAll</artifactId>
@ -84,7 +90,7 @@
</goals>
</execution>
</executions>
</plugin>
</plugin-->
</plugins>