mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-09 22:30:57 +00:00
257 lines
8.2 KiB
XML
257 lines
8.2 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>
|
|
<name>PlantUML Servlet</name>
|
|
<packaging>war</packaging>
|
|
<build>
|
|
<finalName>plantuml</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<wtpversion>1.5</wtpversion>
|
|
<wtpContextName>plantuml</wtpContextName>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<configuration>
|
|
<scanIntervalSeconds>5</scanIntervalSeconds>
|
|
<webApp>
|
|
<contextPath>${jetty.contextpath}</contextPath>
|
|
</webApp>
|
|
<systemProperties>
|
|
<systemProperty>
|
|
<name>jetty.port</name>
|
|
<value>${jetty.port}</value>
|
|
</systemProperty>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals><goal>copy</goal></goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty-runner</artifactId>
|
|
<version>8.1.9.v20130131</version>
|
|
<destFileName>jetty-runner.jar</destFileName>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<configuration>
|
|
<webResources>
|
|
<resource>
|
|
<directory>src/main/webapp</directory>
|
|
<includes>
|
|
<include>*.jspf</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</webResources>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.14.1</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.0-beta-3</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.11</version>
|
|
<executions>
|
|
<execution>
|
|
<id>validate</id>
|
|
<phase>validate</phase>
|
|
<configuration>
|
|
<configLocation>${basedir}/src/main/config/checkstyle.xml</configLocation>
|
|
<encoding>UTF-8</encoding>
|
|
<consoleOutput>true</consoleOutput>
|
|
<failsOnError>true</failsOnError>
|
|
<linkXRef>false</linkXRef>
|
|
</configuration>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports><!-- select reports -->
|
|
<report>index</report>
|
|
<report>dependencies</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
<configuration>
|
|
<show>private</show>
|
|
<nohelp>true</nohelp>
|
|
</configuration>
|
|
<reportSets>
|
|
<reportSet>
|
|
<id>html</id>
|
|
<reports>
|
|
<report>javadoc</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.11</version>
|
|
<configuration>
|
|
<configLocation>${basedir}/src/main/config/checkstyle.xml</configLocation>
|
|
<encoding>UTF-8</encoding>
|
|
<linkXRef>false</linkXRef>
|
|
</configuration>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>checkstyle</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<jetty.version>8.0.4.v20111024</jetty.version>
|
|
<jetty.port>8080</jetty.port>
|
|
<jetty.contextpath>/plantuml</jetty.contextpath>
|
|
<maven.build.timestamp.format>yyyyMMdd-HHmm
|
|
</maven.build.timestamp.format>
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.sourceforge.plantuml</groupId>
|
|
<artifactId>plantuml</artifactId>
|
|
<version>1.2020.26</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>codemirror</artifactId>
|
|
<version>3.21</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>4.13.1</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>${jetty.version}</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>
|
|
<dependency>
|
|
<groupId>org.scilab.forge</groupId>
|
|
<artifactId>jlatexmath</artifactId>
|
|
<version>1.0.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scilab.forge</groupId>
|
|
<artifactId>jlatexmath-font-greek</artifactId>
|
|
<version>1.0.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scilab.forge</groupId>
|
|
<artifactId>jlatexmath-font-cyrillic</artifactId>
|
|
<version>1.0.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-all</artifactId>
|
|
<version>1.12</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|