-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
89 lines (81 loc) · 3.2 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
<?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>
<parent>
<groupId>de.cuioss</groupId>
<artifactId>cui-java-parent</artifactId>
<version>0.9.1</version>
<relativePath />
</parent>
<artifactId>cui-java-tools</artifactId>
<name>cui java tools</name>
<version>2.2-SNAPSHOT</version>
<description>Utility Library acting as a replacement for google's guava,
certain apache-commons libraries and logging facades/frameworks.
</description>
<packaging>jar</packaging>
<url>https://github.com/cuioss/cui-java-tools/</url>
<scm>
<url>https://github.com/cuioss/cui-java-tools/</url>
<connection>scm:git:https://github.com/cuioss/cui-java-tools.git</connection>
<developerConnection>scm:git:https://github.com/cuioss/cui-java-tools/</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<version.cui.parent>0.8.6</version.cui.parent>
<maven.jar.plugin.automatic.module.name>de.cuioss.java.tools</maven.jar.plugin.automatic.module.name>
</properties>
<issueManagement>
<url>https://github.com/cuioss/cui-java-tools/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<dependencyManagement>
<dependencies>
<!-- owolff: Kept locally, because solely used for module testing -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.78.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>3.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.cuioss</groupId>
<artifactId>java-ee-10-bom</artifactId>
<version>${version.cui.parent}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!-- Unit testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>