-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
62 lines (57 loc) · 2.07 KB
/
pom.xml
File metadata and controls
62 lines (57 loc) · 2.07 KB
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
<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.envite</groupId>
<artifactId>pro-a</artifactId>
<version>1.3.0-snapshot</version>
<packaging>pom</packaging>
<name>ProA</name>
<modules>
<module>frontend</module>
<module>backend</module>
</modules>
<properties>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.release>20</maven.compiler.release>
<version.camunda>7.20.0</version.camunda>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.scm.url>https://github.com/envite-consulting/ProA.git</project.scm.url>
<version.maven-release-plugin>3.0.1</version.maven-release-plugin>
</properties>
<scm>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>${project.scm.url}</url>
<tag>v1.2</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${version.maven-release-plugin}</version>
<configuration>
<tag>v${releaseVersion}</tag>
<scmReleaseCommitComment>Release v${releaseVersion}</scmReleaseCommitComment>
<scmDevelopmentCommitComment>Prepare for next development iteration</scmDevelopmentCommitComment>
</configuration>
</plugin>
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<gitConfig>
<core.hooksPath>.githooks/</core.hooksPath>
</gitConfig>
</configuration>
<executions>
<execution>
<goals>
<goal>configure</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>