-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
112 lines (97 loc) · 3.97 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
107
108
109
110
111
112
<?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>de.uni-ms.scdh.tei</groupId>
<artifactId>tooling</artifactId>
<version>${revision}${changelist}</version>
<name>Tooling</name>
<description>Tooling for TEI editions and TEI processing projects</description>
<url>https://zivgitlab.uni-muenster.de/SCDH/tei-processing/tooling</url>
<developers>
<developer>
<name>Christian Lück</name>
<organization>SCDH, University of Münster</organization>
</developer>
</developers>
<organization>
<name>Service Center of Digital Humanities, ULB, University of Münster</name>
<url>https://www.uni-muenster.de/SCDH/</url>
</organization>
<licenses>
<license>
<name>GNU General Public License, version 3</name>
<url>https://gplv3.fsf.org/</url>
</license>
</licenses>
<scm>
<connection>scm:git:${project.url}.git</connection>
<developerConnection>scm:git:${project.url}.git</developerConnection>
<url>scm:git:${project.url}.git</url>
<tag>HEAD</tag>
</scm>
<packaging>pom</packaging>
<properties>
<!-- default values used in archetype generation dialogs -->
<archetype.tooling.dir>tooling</archetype.tooling.dir>
<archetype.git.instance>zivgitlab.uni-muenster.de</archetype.git.instance>
<!--
The env.CI_PROJECT_ID variable must be escaped when defined!
Thus, in the gitlab pipeline it has to be escaped!
-->
<archetype.distribution.url>https://${git.instance}/api/v4/projects/\${env.CI_PROJECT_ID}/packages/maven</archetype.distribution.url>
<archetype.credits>\${env.GITLAB_USER_NAME}</archetype.credits>
<!-- properties for this project -->
<distribution.url>https://zivgitlab.uni-muenster.de/api/v4/projects/${env.CI_PROJECT_ID}/packages/maven</distribution.url>
</properties>
<modules>
<module>edition</module>
<module>edition-flat</module>
<module>processing</module>
</modules>
<repositories>
<repository>
<id>gitlab-maven</id>
<url>${distribution.url}</url>
</repository>
</repositories>
<!-- get the build artifacts into the gitlab maven package registry -->
<distributionManagement>
<repository>
<id>gitlab-maven</id>
<url>${distribution.url}</url>
</repository>
<snapshotRepository>
<id>gitlab-maven</id>
<url>${distribution.url}</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>make-archetype-catalog</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
<include>archetype-catalog.xml</include>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>