stage 추가
All checks were successful
PR-CI / build-test (pull_request) Successful in 21s

This commit is contained in:
revlis44
2025-12-10 16:02:13 +09:00
parent dffebf63ae
commit 433d47b80b
2 changed files with 176 additions and 0 deletions

29
pom.xml
View File

@@ -731,6 +731,35 @@
</build>
</profile>
<profile>
<id>stage</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>process-resources</phase>
<configuration>
<target>
<copy
file="${basedir}/src/main/resources/egovframework/egovProps/globals-stage.properties"
tofile="${project.build.outputDirectory}/egovframework/egovProps/globals.properties"
overwrite="true"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>prod</id>
<build>