Header

  1. View current page

    정상혁의 수첩

Profile_img_60x60_08
195

Maven WAS

Jetty

<build>

<plugin>

<groupId>org.mortbay.jetty</groupId>

<artifactId>maven-jetty-plugin</artifactId>

<configuration>

<scanIntervalSeconds>3</scanIntervalSeconds>

<contextPath>/</contextPath>

<connectors>

<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">

<port>8080</port>

</connector>

</connectors>

</configuration>

</plugin><plugin>

 

Maven을 이용한 웹 어플리케이션 개발 및 Jetty 연동법

 

Tomcat

<groupId>org.codehaus.mojo</groupId>

<artifactId>tomcat-maven-plugin</artifactId>

<version>1.0</version>

<configuration>

               <path>/admin</path>

       </configuration>

</plugin>

</plugins>

</build>

History

Last edited on 11/25/2011 08:02 by benelog

Comments (0)

You must log in to leave a comment. Please sign in.