Skip to content

Commit

Permalink
#4 REST API 개발환경 설정
Browse files Browse the repository at this point in the history
- Maven deploy 설정
  • Loading branch information
cloudwisx committed Dec 10, 2021
1 parent 2230a20 commit 6c890ff
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@
<scope>provided</scope>
</dependency>


<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
Expand All @@ -160,7 +159,36 @@
<version>4.12</version>
<scope>test</scope>
</dependency>

</dependencies>


<distributionManagement>
<repository>
<id>SMILE-DEV</id>
<url>http://210.116.119.130:8080/manager/text</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://210.116.119.130:8080/manager/text</url>
<server>SMILE-DEV</server>
<path>/</path>
<update>true</update>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 6c890ff

Please sign in to comment.