maven jetty plug

来源:互联网 发布:ear cuff淘宝 编辑:程序博客网 时间:2024/06/07 09:22
            <plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>8.1.5.v20120716</version>
                <configuration>
                    <stopPort>9966</stopPort>
                    <stopKey>foo</stopKey>
                       <connectors>
                         <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
                             <port>9000</port>
                         </connector>
                    </connectors>
                     <scanIntervalSeconds>0</scanIntervalSeconds>
                    <webApp>
                        <contextPath>/path</contextPath>
                    </webApp>
                </configuration>
            </plugin>
        </plugins>

0 0
原创粉丝点击