Добавление jar

This commit is contained in:
Shilyaev_Dmitry 2025-02-20 15:10:03 +03:00
parent 85606dabbb
commit 07a01a55d6
3 changed files with 15 additions and 6 deletions

Binary file not shown.

18
pom.xml
View File

@ -8,6 +8,8 @@
<artifactId>Android-Bootcamp-2025-Backend</artifactId> <artifactId>Android-Bootcamp-2025-Backend</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties> <properties>
<maven.compiler.source>11</maven.compiler.source> <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
@ -54,18 +56,22 @@
<artifactId>springdoc-openapi-ui</artifactId> <artifactId>springdoc-openapi-ui</artifactId>
<version>1.7.0</version> <version>1.7.0</version>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId> <artifactId>spring-boot-starter-security</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.0.RELEASE</version>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: com.example.nto.App