-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
102 lines (97 loc) · 4.44 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
<?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>
<artifactId>demetra-access-parent</artifactId>
<groupId>be.nbb.demetra</groupId>
<version>2.2.5-SNAPSHOT</version>
</parent>
<artifactId>demetra-access-releaser</artifactId>
<packaging>pom</packaging>
<name>Demetra - Access - Releaser</name>
<dependencies>
<dependency>
<artifactId>demetra-access-cruncher</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>demetra-access-desktop</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>full-release</id>
<build>
<plugins>
<!-- Extract changelog for release -->
<plugin>
<groupId>com.github.nbbrd.heylogs</groupId>
<artifactId>heylogs-maven-plugin</artifactId>
<executions>
<execution>
<id>extract-changelog</id>
<goals>
<goal>extract</goal>
</goals>
<configuration>
<inputFile>${project.parent.basedir}/CHANGELOG.md</inputFile>
</configuration>
</execution>
</executions>
</plugin>
<!-- Release assets -->
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>full-release</goal>
</goals>
</execution>
</executions>
<configuration>
<jreleaser>
<release>
<github>
<skipTag>true</skipTag>
<!-- Fix default value -->
<branch>master</branch>
<changelog>
<external>${project.build.directory}/CHANGELOG.md</external>
</changelog>
</github>
</release>
<signing>
<active>ALWAYS</active>
<!-- Fix default value -->
<armored>true</armored>
</signing>
<files>
<artifacts>
<artifact>
<path>
${project.parent.basedir}/demetra-access-cruncher/target/demetra-access-cruncher-${project.version}-uber.jar
</path>
</artifact>
<artifact>
<path>
${project.parent.basedir}/demetra-access-desktop/target/demetra-access-desktop-${project.version}.nbm
</path>
</artifact>
</artifacts>
</files>
</jreleaser>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>