2011-01-23 19:36:52 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
========================================================================
|
|
|
|
PlantUML : a free UML diagram generator
|
|
|
|
========================================================================
|
|
|
|
(C) Copyright 2009, Arnaud Roques
|
|
|
|
|
|
|
|
Project Info: http://plantuml.sourceforge.net
|
|
|
|
|
|
|
|
This file is part of PlantUML.
|
|
|
|
|
|
|
|
PlantUML is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
PlantUML distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
|
|
USA.
|
|
|
|
|
|
|
|
[Java is a trademark or registered trademark of Sun Microsystems, Inc.
|
|
|
|
in the United States and other countries.]
|
|
|
|
|
|
|
|
Script Author: Julien Eluard
|
|
|
|
|
|
|
|
-->
|
2017-02-15 21:34:36 +00:00
|
|
|
<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">
|
2011-01-23 19:36:52 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>net.sourceforge.plantuml</groupId>
|
|
|
|
<artifactId>plantuml</artifactId>
|
2017-02-26 16:26:11 +00:00
|
|
|
<version>8058-SNAPSHOT</version>
|
2011-01-23 19:36:52 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>PlantUML</name>
|
|
|
|
<description>
|
|
|
|
PlantUML is a component that allows to quickly write :
|
|
|
|
* sequence diagram,
|
|
|
|
* use case diagram,
|
|
|
|
* class diagram,
|
|
|
|
* activity diagram,
|
|
|
|
* component diagram,
|
|
|
|
* state diagram
|
|
|
|
* object diagram
|
|
|
|
</description>
|
|
|
|
<url>http://plantuml.sourceforge.net</url>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>5</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.8.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The GNU General Public License</name>
|
|
|
|
<url>http://www.gnu.org/licenses/gpl.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
2013-12-10 21:35:39 +00:00
|
|
|
<connection>scm:svn:svn://svn.code.sf.net/p/plantuml/code/trunk</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.code.sf.net/p/plantuml/code/trunk</developerConnection>
|
|
|
|
<url>svn://svn.code.sf.net/p/plantuml/code/trunk</url>
|
2011-01-23 19:36:52 +00:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>Sourceforge</system>
|
|
|
|
<url>http://sourceforge.net/tracker/?group_id=259736</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>arnaud.roques</id>
|
|
|
|
<name>Arnaud Roques</name>
|
|
|
|
<email>plantuml@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2015-04-07 18:18:37 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>doclint-java8-disable</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[1.8,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2011-01-23 19:36:52 +00:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>${project.basedir}/src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.basedir}/src</directory>
|
|
|
|
<includes>
|
2016-04-22 20:36:08 +00:00
|
|
|
<include>net/sourceforge/plantuml/version/*.png</include>
|
|
|
|
<include>net/sourceforge/plantuml/openiconic/data/*.txt</include>
|
2015-04-07 18:18:37 +00:00
|
|
|
<include>net/sourceforge/plantuml/openiconic/data/*.svg</include>
|
|
|
|
<include>net/sourceforge/plantuml/fun/*.png</include>
|
2016-07-04 19:06:50 +00:00
|
|
|
<include>sprites/archimate/*.png</include>
|
2016-04-22 20:36:08 +00:00
|
|
|
<include>net/sourceforge/plantuml/dedication/*.png</include>
|
2016-12-01 20:29:25 +00:00
|
|
|
<include>net/sourceforge/plantuml/math/*.js</include>
|
2011-01-23 19:36:52 +00:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
<debug>false</debug>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
2015-04-07 18:18:37 +00:00
|
|
|
<configuration>
|
|
|
|
<additionalparam>${javadoc.opts}</additionalparam>
|
|
|
|
</configuration>
|
2011-01-23 19:36:52 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>net.sourceforge.plantuml.Run</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|