-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
98 lines (91 loc) · 3.67 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
<?xml version="1.0" encoding="UTF-8"?>
<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>ifml2</groupId>
<artifactId>ifml3-global</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>IFML3 Global</name>
<description>Project for management all settings for IFML3 group projects</description>
<properties>
<!-- Global Settings -->
<top.dir>.</top.dir>
<!-- Encoding -->
<encoding>UTF-8</encoding>
<!-- Java version -->
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<!-- Version of plugin dependencies -->
<!-- Version of lib dependencies -->
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<!-- Gitflow support
All projects with .git folder will use this profile.
-->
<profile>
<id>gitflow-support</id>
<activation>
<file>
<exists>.git</exists>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.18.0</version>
<configuration>
<gitFlowConfig>
<productionBranch>master</productionBranch>
<developmentBranch>develop</developmentBranch>
<featureBranchPrefix>feature/</featureBranchPrefix>
<releaseBranchPrefix>release/</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix/</hotfixBranchPrefix>
<supportBranchPrefix>support/</supportBranchPrefix>
<versionTagPrefix>v</versionTagPrefix>
<origin>origin</origin>
</gitFlowConfig>
<fetchRemote>true</fetchRemote>
<pushRemote>true</pushRemote>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Logging Support
Provied support for SLF4J logger interface for all java projects.
-->
<profile>
<id>logging-support</id>
<activation>
<file>
<exists>src/main/java</exists>
</file>
</activation>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<scm>
<url>https://github.com/IFML2/ifml3-global</url>
<connection>scm:git:https://github.com/IFML2/ifml3-global.git</connection>
<developerConnection>scm:git:git@github.com:IFML2/ifml3-global.git</developerConnection>
</scm>
</project>