- add target to gitignore

- add profiles to pom.xml
This commit is contained in:
2026-04-21 06:45:24 +07:00
parent 85efdb7714
commit 322ef49568
2 changed files with 35 additions and 0 deletions

24
pom.xml
View File

@ -113,4 +113,28 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>local</id>
<properties>
<spring.profiles.active>local</spring.profiles.active>
<spring-boot.run.profiles>local</spring-boot.run.profiles>
</properties>
</profile>
<profile>
<id>dev</id>
<properties>
<spring.profiles.active>dev</spring.profiles.active>
<spring-boot.run.profiles>dev</spring-boot.run.profiles>
</properties>
</profile>
<profile>
<id>prd</id>
<properties>
<spring.profiles.active>prd</spring.profiles.active>
<spring-boot.run.profiles>prd</spring-boot.run.profiles>
</properties>
</profile>
</profiles>
</project>