-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
94 lines (94 loc) · 3.66 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>com.exasol</groupId>
<artifactId>java-util-logging-testing</artifactId>
<version>2.0.3</version>
<name>Test utilities for `java.util.logging`</name>
<description>This project provides utilities that help testing software that uses `java.util.logging` as its logging
framework.</description>
<url>https://github.com/exasol/java-util-logging-testing/</url>
<properties>
<junit.version>5.9.2</junit.version>
</properties>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Exasol</name>
<email>[email protected]</email>
<organization>Exasol AG</organization>
<organizationUrl>https://www.exasol.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/exasol/java-util-logging-testing.git</connection>
<developerConnection>scm:git:https://github.com/exasol/java-util-logging-testing.git</developerConnection>
<url>https://github.com/exasol/java-util-logging-testing/tree/master</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<finalName>java-util-logging-testing-${project.version}</finalName>
</configuration>
</plugin>
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>2.9.3</version>
<executions>
<execution>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.exasol</groupId>
<artifactId>error-code-crawler-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<artifactId>java-util-logging-testing-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>2.0.3</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>