mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-11 07:10:57 +00:00
57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.sourceforge.plantuml</groupId>
|
||
|
<artifactId>plantumlservlet</artifactId>
|
||
|
<version>1-SNAPSHOT</version>
|
||
|
<packaging>war</packaging>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>net.sourceforge.plantuml</groupId>
|
||
|
<artifactId>plantuml</artifactId>
|
||
|
<version>7481</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>HTTPClient</groupId>
|
||
|
<artifactId>HTTPClient</artifactId>
|
||
|
<version>0.3-3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>servlet-api</artifactId>
|
||
|
<version>2.5</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>httpunit</groupId>
|
||
|
<artifactId>httpunit</artifactId>
|
||
|
<version>1.7</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>rhino</groupId>
|
||
|
<artifactId>js</artifactId>
|
||
|
<version>1.7R2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
||
|
<artifactId>jetty-all</artifactId>
|
||
|
<version>7.5.4.v20111024</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mortbay.jetty</groupId>
|
||
|
<artifactId>jsp-2.1-glassfish</artifactId>
|
||
|
<version>2.1.v20100127</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|