-
Notifications
You must be signed in to change notification settings - Fork 18
/
pom.xml
106 lines (98 loc) · 2.84 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>de.dhbw.woped</groupId>
<artifactId>WoPeD</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<properties>
<revision>3.9.2</revision>
<sonar.organization>woped</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<name>Workflow Petri Net Designer</name>
<url>https://woped.dhbw-karlsruhe.de/</url>
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/woped/woped</url>
</repository>
</repositories>
<modules>
<module>WoPeD-BeanMetric</module>
<module>WoPeD-BeanConfiguration</module>
<module>WoPeD-BeanPnml</module>
<module>WoPeD-BeanBpel</module>
<module>WoPeD-FileInterface</module>
<module>WoPeD-BPELExport</module>
<module>WoPeD-CommonLibs</module>
<module>WoPeD-Core</module>
<module>WoPeD-Flamingo</module>
<module>WoPeD-GUI</module>
<module>WoPeD-Configuration</module>
<module>WoPeD-QualAnalysis</module>
<module>WoPeD-ProcessMetrics</module>
<module>WoPeD-QuantAnalysis</module>
<module>WoPeD-AProMoRe</module>
<module>WoPeD-Editor</module>
<module>WoPeD-Starter</module>
<module>WoPeD-Installer</module>
<module>WoPeD-UnitTests</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
<inherited>false</inherited>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.22.8</version>
<configuration>
<formats>
<format>
<includes>
<include>*.md</include>
<include>.gitignore</include>
</includes>
<excludes>
<exclude>LICENSE.md</exclude>
<exclude>README.md</exclude>
</excludes>
<trimTrailingWhitespace />
<endWithNewline />
<indent>
<tabs>true</tabs>
<spacesPerTab>4</spacesPerTab>
</indent>
</format>
</formats>
<java>
<importOrder />
<removeUnusedImports />
<googleJavaFormat>
<version>1.15.0</version>
<style>GOOGLE</style>
<reflowLongStrings>true</reflowLongStrings>
<groupArtifact>com.google.googlejavaformat:google-java-format</groupArtifact>
</googleJavaFormat>
</java>
</configuration>
<executions>
<execution>
<id>spotless-check</id>
<phase>compile</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>