This repository was archived by the owner on Feb 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
177 lines (166 loc) · 6.92 KB
/
pom.xml
File metadata and controls
177 lines (166 loc) · 6.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?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.splatgames.aether</groupId>
<artifactId>aether-profiler</artifactId>
<version>1.1.0</version>
<name>Aether Profiler</name>
<packaging>jar</packaging>
<description>
Aether Profiler is a Java library designed to provide profiling capabilities for applications using the Aether
library.
It allows developers to monitor and analyze the performance of their applications, helping to identify
bottlenecks and optimize resource usage.
This library is particularly useful for applications that require dependency resolution and management, such as
Maven-based projects.
</description>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/license/mit/</url>
<distribution>repo</distribution>
</license>
</licenses>
<url>https://software.splatgames.de/products/aether/profiler</url>
<developers>
<developer>
<name>Erik Pförtner</name>
<email>splatcrafter@splatgames.de</email>
<organization>Splatgames.de Software</organization>
<organizationUrl>https://software.splatgames.de/</organizationUrl>
<roles>
<role>Project Manager</role>
<role>Head of Development</role>
</roles>
</developer>
</developers>
<organization>
<name>Splatgames.de Software</name>
<url>https://software.splatgames.de/</url>
</organization>
<scm>
<connection>scm:git:https://github.com/aether-framework/aether-profiler.git</connection>
<developerConnection>scm:git:git@github.com:aether-framework/aether-profiler.git</developerConnection>
<url>https://github.com/aether-framework/aether-profiler</url>
<tag>HEAD</tag>
</scm>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.jetbrains.annotations.version>24.0.0</org.jetbrains.annotations.version>
<org.slf4j.version>2.0.16</org.slf4j.version>
<org.junit.jupiter.version>5.11.4</org.junit.jupiter.version>
<org.assertj.version>3.27.3</org.assertj.version>
<org.mockito.version>5.14.2</org.mockito.version>
<org.apache.maven.plugins.maven-source-plugin.version>3.3.1
</org.apache.maven.plugins.maven-source-plugin.version>
<org.apache.maven.plugins.maven-javadoc-plugin.version>3.10.1
</org.apache.maven.plugins.maven-javadoc-plugin.version>
<org.apache.maven.plugins.maven-site-plugin.version>3.20.0</org.apache.maven.plugins.maven-site-plugin.version>
<org.apache.maven.plugins.maven-gpg-plugin.version>3.2.6</org.apache.maven.plugins.maven-gpg-plugin.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${org.apache.maven.plugins.maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${org.apache.maven.plugins.maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${org.apache.maven.plugins.maven-site-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${org.apache.maven.plugins.maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>${org.jetbrains.annotations.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${org.slf4j.version}</version>
<scope>compile</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${org.junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${org.assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${org.mockito.version}</version>
<scope>test</scope>
</dependency>
<!-- slf4j simple logger for testing -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${org.slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>