-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
88 lines (77 loc) · 2.92 KB
/
pom.xml
File metadata and controls
88 lines (77 loc) · 2.92 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
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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
FIXME: Replace deprecated cids-parent by cismet-parent
-->
<parent>
<groupId>de.cismet.cids</groupId>
<artifactId>cids-parent</artifactId>
<version>9.0</version>
</parent>
<groupId>de.cismet.custom</groupId>
<artifactId>beansbinding</artifactId>
<version>9.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>beansbinding</name>
<description>cismet beansbinding fork</description>
<properties>
<!--
FIXME: remove deprecated de.cismet.libDir property required for cids
legacy distribution when switching to cismet-parent.pom
-->
<de.cismet.libDir>lib/ext</de.cismet.libDir>
<!--
skip jalopy code re-formatting to preserve original code format and
thus to to allow push request / rebasing
-->
<jalopy.skip>true</jalopy.skip>
<prettier.skip>true</prettier.skip>
</properties>
<scm>
<connection>https://github.com/cismet/beansbinding.git</connection>
<developerConnection>scm:git:git@github.com:cismet/beansbinding.git</developerConnection>
<url>https://github.com/cismet/beansbinding</url>
<tag>HEAD</tag>
</scm>
<ciManagement>
<system>jenkins</system>
<url>https://ci.cismet.de/job/beansbinding/</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/cismet/beansbinding/issues</url>
</issueManagement>
<dependencyManagement>
<!-- IMPORT of cismet-ext-bom -->
<dependencies>
<dependency>
<groupId>de.cismet</groupId>
<artifactId>cismet-ext-bom</artifactId>
<version>9.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!--
TODO define versions in dependency management section of ext-libs-bom
-->
<dependencies>
<!-- BEGIN: managed dependencies (ext-bom) -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
</dependency>
<!-- END: managed dependencies (ext-bom) -->
</dependencies>
<build>
<!--
FIXME: DANGER DANGER DANGER !!!
the artifact has to be renamed due to compatibility reasons to the
legacy cidsDistribution
See https://cismet.slack.com/messages/ugly-winning/files/F3ZC7HX7V/
-->
<finalName>beansbinding-1.2.1</finalName>
</build>
</project>