1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2025-01-03 05:00:14 +00:00

Added maven-eclipse-plugin configuration options for generation of

eclipse wtp configuration files so the project is recognized as a "web
project" in eclipse and it can be run in eclipse managed servers.
This commit is contained in:
Pablo Lalloni 2011-11-12 16:22:48 -03:00
parent b66a774bc7
commit 1b9e92cc78

23
pom.xml
View File

@ -5,6 +5,23 @@
<artifactId>plantumlservlet</artifactId>
<version>1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<wtpversion>1.5</wtpversion>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sourceforge.plantuml</groupId>
@ -52,5 +69,11 @@
<version>2.1.v20100127</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.10</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>