首页 > resin+maven+eclipse 发布web project

resin+maven+eclipse 发布web project

我使用resin作为web服务器,
在eclipse中创建了一个maven dynamic web project
请问如何发布项目到resin中,具体有什么详细的配置吗。有什么具体的操作,最好能按步骤详细说明
在pom.xml中配置了如下

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
                <showWarnings>true</showWarnings>
            </configuration>
        </plugin>
        <plugin>
            <groupId>com.caucho</groupId>
            <artifactId>resin-maven-plugin</artifactId>
            <version>3.1.5</version>
        </plugin>
    </plugins>
</build>
<dependencies>
........
</dependencies>
【热门文章】
【热门文章】