-
Notifications
You must be signed in to change notification settings - Fork 7
/
pom.xml
82 lines (76 loc) · 3.25 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
<?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>
<parent>
<groupId>com.dlsc</groupId>
<artifactId>dlsc-maven-parent</artifactId>
<version>1.5.0</version>
</parent>
<name>UnitFXParent</name>
<groupId>com.dlsc.unitfx</groupId>
<artifactId>unitfx-parent</artifactId>
<version>1.0.10</version>
<packaging>pom</packaging>
<modules>
<module>unitfx</module>
<module>unitfx-demo</module>
</modules>
<properties>
<project.identifier>unitfx</project.identifier>
<project.github.repository>dlsc-software-consulting-gmbh/UnitFX</project.github.repository>
<local.repository.path>/tmp/repository</local.repository.path>
<sonar.projectKey>dlsc-software-consulting-gmbh_UnitFX</sonar.projectKey>
<java.version>11</java.version>
<javafx.version>18</javafx.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.dlsc.unitfx</groupId>
<artifactId>unitfx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.measure</groupId>
<artifactId>unit-api</artifactId>
<version>2.1.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<configuration>
<jreleaser>
<release>
<github>
<branch>master</branch>
<tagName>{{projectVersion}}</tagName>
<overwrite>true</overwrite>
<changelog>
<formatted>ALWAYS</formatted>
<format>- {{commitShortHash}} {{commitTitle}}</format>
<contributors>
<format>- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}</format>
</contributors>
<hide>
<contributors>GitHub</contributors>
</hide>
</changelog>
</github>
</release>
</jreleaser>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>