1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-09-27 14:39:02 +00:00

Merge pull request #780 from sfuhrm/indent

Fix XML indention of the pom.xml
This commit is contained in:
PlantUML 2021-11-18 14:10:14 +01:00 committed by GitHub
commit 30befcfff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

409
pom.xml
View File

@ -31,15 +31,13 @@
--> -->
<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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.plantuml</groupId>
<groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId>
<artifactId>plantuml</artifactId> <version>1.2021.15-SNAPSHOT</version>
<version>1.2021.15-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging> <name>PlantUML</name>
<description>
<name>PlantUML</name>
<description>
PlantUML is a component that allows to quickly write : PlantUML is a component that allows to quickly write :
* sequence diagram, * sequence diagram,
* use case diagram, * use case diagram,
@ -49,211 +47,200 @@
* state diagram * state diagram
* object diagram * object diagram
</description> </description>
<url>https://plantuml.com</url> <url>https://plantuml.com</url>
<parent>
<parent> <groupId>org.sonatype.oss</groupId>
<groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId>
<artifactId>oss-parent</artifactId> <version>7</version>
<version>7</version> </parent>
</parent> <properties>
<finalName>${project.artifactId}-${project.version}</finalName>
<properties> <maven.compiler.source>1.7</maven.compiler.source>
<finalName>${project.artifactId}-${project.version}</finalName> <maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.testSource>1.8</maven.compiler.testSource>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.testTarget>1.8</maven.compiler.testTarget>
<maven.compiler.testSource>1.8</maven.compiler.testSource> </properties>
<maven.compiler.testTarget>1.8</maven.compiler.testTarget> <dependencyManagement>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.8.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.ant</groupId> <groupId>org.junit</groupId>
<artifactId>ant</artifactId> <artifactId>junit-bom</artifactId>
<version>1.10.12</version> <version>5.8.1</version>
<scope>provided</scope> <type>pom</type>
</dependency> <scope>import</scope>
<dependency> </dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.21.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scilab.forge</groupId>
<artifactId>jlatexmath</artifactId>
<version>1.0.7</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</dependencyManagement>
<licenses> <dependencies>
<license> <dependency>
<name>The GNU General Public License</name> <groupId>org.apache.ant</groupId>
<url>http://www.gnu.org/licenses/gpl.txt</url> <artifactId>ant</artifactId>
<distribution>repo</distribution> <version>1.10.12</version>
</license> <scope>provided</scope>
</licenses> </dependency>
<dependency>
<scm> <groupId>org.assertj</groupId>
<connection>scm:svn:svn://svn.code.sf.net/p/plantuml/code/trunk</connection> <artifactId>assertj-core</artifactId>
<developerConnection>scm:svn:https://svn.code.sf.net/p/plantuml/code/trunk</developerConnection> <version>3.21.0</version>
<url>svn://svn.code.sf.net/p/plantuml/code/trunk</url> <scope>test</scope>
</scm> </dependency>
<dependency>
<issueManagement> <groupId>org.junit.jupiter</groupId>
<system>Sourceforge</system> <artifactId>junit-jupiter</artifactId>
<url>http://sourceforge.net/tracker/?group_id=259736</url> <scope>test</scope>
</issueManagement> </dependency>
<dependency>
<developers> <groupId>org.scilab.forge</groupId>
<developer> <artifactId>jlatexmath</artifactId>
<id>arnaud.roques</id> <version>1.0.7</version>
<name>Arnaud Roques</name> <scope>test</scope>
<email>plantuml@gmail.com</email> </dependency>
</developer> </dependencies>
</developers> <licenses>
<license>
<build> <name>The GNU General Public License</name>
<finalName>${finalName}</finalName> <url>http://www.gnu.org/licenses/gpl.txt</url>
<sourceDirectory>${project.basedir}/src</sourceDirectory> <distribution>repo</distribution>
<testSourceDirectory>${project.basedir}/test</testSourceDirectory> </license>
<resources> </licenses>
<resource> <scm>
<directory>${project.basedir}/src</directory> <connection>scm:svn:svn://svn.code.sf.net/p/plantuml/code/trunk</connection>
<includes> <developerConnection>scm:svn:https://svn.code.sf.net/p/plantuml/code/trunk</developerConnection>
<include>net/sourceforge/plantuml/version/*.png</include> <url>svn://svn.code.sf.net/p/plantuml/code/trunk</url>
<include>net/sourceforge/plantuml/openiconic/data/*.txt</include> </scm>
<include>net/sourceforge/plantuml/openiconic/data/*.svg</include> <issueManagement>
<include>net/sourceforge/plantuml/fun/*.png</include> <system>Sourceforge</system>
<include>sprites/archimate/*.png</include> <url>http://sourceforge.net/tracker/?group_id=259736</url>
<include>net/sourceforge/plantuml/dedication/*.png</include> </issueManagement>
<include>net/sourceforge/plantuml/math/*.js</include> <developers>
<include>net/sourceforge/plantuml/windowsdot/*.dat</include> <developer>
</includes> <id>arnaud.roques</id>
</resource> <name>Arnaud Roques</name>
<resource> <email>plantuml@gmail.com</email>
<directory>${project.basedir}</directory> </developer>
<includes> </developers>
<include>stdlib/**/*.repx</include> <build>
<include>skin/**/*.skin</include> <finalName>${finalName}</finalName>
<include>themes/**/*.puml</include> <sourceDirectory>${project.basedir}/src</sourceDirectory>
<include>svg/**/*.css</include> <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
<include>svg/**/*.js</include> <resources>
</includes> <resource>
</resource> <directory>${project.basedir}/src</directory>
</resources> <includes>
<plugins> <include>net/sourceforge/plantuml/version/*.png</include>
<plugin> <include>net/sourceforge/plantuml/openiconic/data/*.txt</include>
<artifactId>maven-compiler-plugin</artifactId> <include>net/sourceforge/plantuml/openiconic/data/*.svg</include>
<version>3.8.1</version> <include>net/sourceforge/plantuml/fun/*.png</include>
<configuration> <include>sprites/archimate/*.png</include>
<debug>true</debug> <include>net/sourceforge/plantuml/dedication/*.png</include>
</configuration> <include>net/sourceforge/plantuml/math/*.js</include>
</plugin> <include>net/sourceforge/plantuml/windowsdot/*.dat</include>
<plugin> </includes>
<artifactId>maven-dependency-plugin</artifactId> </resource>
<version>3.2.0</version> <resource>
</plugin> <directory>${project.basedir}</directory>
<plugin> <includes>
<artifactId>maven-source-plugin</artifactId> <include>stdlib/**/*.repx</include>
<version>3.2.1</version> <include>skin/**/*.skin</include>
<executions> <include>themes/**/*.puml</include>
<execution> <include>svg/**/*.css</include>
<id>attach-sources</id> <include>svg/**/*.js</include>
<goals> </includes>
<goal>jar</goal> </resource>
</goals> </resources>
</execution> <plugins>
</executions> <plugin>
</plugin> <artifactId>maven-compiler-plugin</artifactId>
<plugin> <version>3.8.1</version>
<artifactId>maven-javadoc-plugin</artifactId> <configuration>
<version>3.2.0</version> <debug>true</debug>
<executions> </configuration>
<execution> </plugin>
<id>attach-javadocs</id> <plugin>
<goals> <artifactId>maven-dependency-plugin</artifactId>
<goal>jar</goal> <version>3.2.0</version>
</goals> </plugin>
<configuration> <plugin>
<javadoc.opts>-Xdoclint:none</javadoc.opts> <artifactId>maven-source-plugin</artifactId>
<additionalparam>-Xdoclint:none</additionalparam> <version>3.2.1</version>
<doclint>none</doclint> <executions>
</configuration> <execution>
</execution> <id>attach-sources</id>
</executions> <goals>
</plugin> <goal>jar</goal>
<plugin> </goals>
<artifactId>maven-jar-plugin</artifactId> </execution>
<version>3.2.0</version> </executions>
<configuration> </plugin>
<archive> <plugin>
<manifestFile>manifest.txt</manifestFile> <artifactId>maven-javadoc-plugin</artifactId>
</archive> <version>3.2.0</version>
</configuration> <executions>
</plugin> <execution>
<plugin> <id>attach-javadocs</id>
<artifactId>maven-surefire-plugin</artifactId> <goals>
<version>3.0.0-M5</version> <goal>jar</goal>
<configuration> </goals>
<environmentVariables> <configuration>
<PLANTUML_SECURITY_PROFILE>UNSECURE</PLANTUML_SECURITY_PROFILE> <javadoc.opts>-Xdoclint:none</javadoc.opts>
</environmentVariables> <additionalparam>-Xdoclint:none</additionalparam>
<systemPropertyVariables> <doclint>none</doclint>
<java.awt.headless>true</java.awt.headless> </configuration>
</systemPropertyVariables> </execution>
</configuration> </executions>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-release-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.5.3</version> <version>3.2.0</version>
<configuration> <configuration>
<mavenExecutorId>forked-path</mavenExecutorId> <archive>
</configuration> <manifestFile>manifest.txt</manifestFile>
</plugin> </archive>
<plugin> </configuration>
<groupId>org.codehaus.mojo</groupId> </plugin>
<artifactId>versions-maven-plugin</artifactId> <plugin>
<version>2.8.1</version> <artifactId>maven-surefire-plugin</artifactId>
</plugin> <version>3.0.0-M5</version>
</plugins> <configuration>
</build> <environmentVariables>
<PLANTUML_SECURITY_PROFILE>UNSECURE</PLANTUML_SECURITY_PROFILE>
<profiles> </environmentVariables>
<profile> <systemPropertyVariables>
<!-- <java.awt.headless>true</java.awt.headless>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!--
Kludge to make 1.8 tests with 1.7 source work nicer in IntelliJ Kludge to make 1.8 tests with 1.7 source work nicer in IntelliJ
See https://youtrack.jetbrains.com/issue/IDEA-85478 See https://youtrack.jetbrains.com/issue/IDEA-85478
--> -->
<id>intellij</id> <id>intellij</id>
<activation> <activation>
<activeByDefault>false</activeByDefault> <activeByDefault>false</activeByDefault>
<property> <property>
<name>idea.maven.embedder.version</name> <name>idea.maven.embedder.version</name>
</property> </property>
</activation> </activation>
<properties> <properties>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
</properties> </properties>
</profile> </profile>
</profiles> </profiles>
</project> </project>