1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+ <groupId >com.exasol</groupId >
6
+ <artifactId >java-util-logging-testing</artifactId >
7
+ <version >${product.version} </version >
8
+ <name >Test utilities for `java.util.logging`</name >
9
+ <description >This project provides utilities that help testing software that uses `java.util.logging` as its logging framework.</description >
10
+ <url >https://github.com/exasol/java-util-logging-testing</url >
11
+ <properties >
12
+ <product .version>1.0.0</product .version>
13
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
15
+ <java .version>9</java .version>
16
+ <junit .version>5.4.2</junit .version>
17
+ <junit .platform.version>1.4.2</junit .platform.version>
18
+ <maven .surefire.version>3.0.0-M3</maven .surefire.version>
19
+ <gpg .skip>true</gpg .skip>
20
+ </properties >
21
+ <licenses >
22
+ <license >
23
+ <name >MIT</name >
24
+ <url >https://opensource.org/licenses/MIT</url >
25
+ <distribution >repo</distribution >
26
+ </license >
27
+ </licenses >
28
+ <developers >
29
+ <developer >
30
+ <name >Exasol</name >
31
+
32
+ <organization >Exasol AG</organization >
33
+ <organizationUrl >https://www.exasol.com/</organizationUrl >
34
+ </developer >
35
+ </developers >
36
+ <scm >
37
+ <connection >scm:git:https://github.com/exasol/java-util-logging-testing.git</connection >
38
+ <developerConnection >scm:git:https://github.com/exasol/java-util-logging-testing.git</developerConnection >
39
+ <url >https://github.com/exasol/java-util-logging-testing/tree/master</url >
40
+ </scm >
41
+ <distributionManagement >
42
+ <snapshotRepository >
43
+ <id >ossrh</id >
44
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
45
+ </snapshotRepository >
46
+ <repository >
47
+ <id >ossrh</id >
48
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
49
+ </repository >
50
+ </distributionManagement >
51
+ <repositories >
52
+ <repository >
53
+ <id >maven.exasol.com</id >
54
+ <url >https://maven.exasol.com/artifactory/exasol-releases</url >
55
+ <snapshots >
56
+ <enabled >false</enabled >
57
+ </snapshots >
58
+ </repository >
59
+ <repository >
60
+ <id >maven.exasol.com-snapshots</id >
61
+ <url >https://maven.exasol.com/artifactory/exasol-snapshots</url >
62
+ <snapshots >
63
+ <enabled >true</enabled >
64
+ </snapshots >
65
+ </repository >
66
+ </repositories >
67
+ <dependencies >
68
+ <dependency >
69
+ <groupId >org.junit.jupiter</groupId >
70
+ <artifactId >junit-jupiter-engine</artifactId >
71
+ <version >${junit.version} </version >
72
+ <scope >test</scope >
73
+ </dependency >
74
+ <dependency >
75
+ <groupId >org.hamcrest</groupId >
76
+ <artifactId >hamcrest</artifactId >
77
+ <version >2.1</version >
78
+ <scope >test</scope >
79
+ </dependency >
80
+ </dependencies >
81
+ <build >
82
+ <plugins >
83
+ <plugin >
84
+ <groupId >org.apache.maven.plugins</groupId >
85
+ <artifactId >maven-compiler-plugin</artifactId >
86
+ <version >3.2</version >
87
+ <configuration >
88
+ <source >${java.version} </source >
89
+ <target >${java.version} </target >
90
+ </configuration >
91
+ </plugin >
92
+ <plugin >
93
+ <groupId >org.jacoco</groupId >
94
+ <artifactId >jacoco-maven-plugin</artifactId >
95
+ <version >0.8.3</version >
96
+ <executions >
97
+ <execution >
98
+ <goals >
99
+ <goal >prepare-agent</goal >
100
+ </goals >
101
+ </execution >
102
+ <execution >
103
+ <id >report</id >
104
+ <phase >test</phase >
105
+ <goals >
106
+ <goal >report</goal >
107
+ </goals >
108
+ </execution >
109
+ </executions >
110
+ </plugin >
111
+ <plugin >
112
+ <groupId >org.apache.maven.plugins</groupId >
113
+ <artifactId >maven-surefire-plugin</artifactId >
114
+ <version >${maven.surefire.version} </version >
115
+ </plugin >
116
+ <plugin >
117
+ <groupId >org.apache.maven.plugins</groupId >
118
+ <artifactId >maven-source-plugin</artifactId >
119
+ <version >3.0.1</version >
120
+ <executions >
121
+ <execution >
122
+ <id >attach-sources</id >
123
+ <goals >
124
+ <goal >jar</goal >
125
+ </goals >
126
+ </execution >
127
+ </executions >
128
+ </plugin >
129
+ <plugin >
130
+ <groupId >org.apache.maven.plugins</groupId >
131
+ <artifactId >maven-javadoc-plugin</artifactId >
132
+ <version >3.0.1</version >
133
+ <executions >
134
+ <execution >
135
+ <id >attach-javadocs</id >
136
+ <goals >
137
+ <goal >jar</goal >
138
+ </goals >
139
+ </execution >
140
+ </executions >
141
+ <configuration >
142
+ <charset >UTF-8</charset >
143
+ <doclint />
144
+ <serialwarn >true</serialwarn >
145
+ <failOnError >true</failOnError >
146
+ <failOnWarnings >true</failOnWarnings >
147
+ </configuration >
148
+ </plugin >
149
+ <plugin >
150
+ <groupId >org.apache.maven.plugins</groupId >
151
+ <artifactId >maven-gpg-plugin</artifactId >
152
+ <version >1.6</version >
153
+ <executions >
154
+ <execution >
155
+ <id >sign-artifacts</id >
156
+ <phase >verify</phase >
157
+ <goals >
158
+ <goal >sign</goal >
159
+ </goals >
160
+ </execution >
161
+ </executions >
162
+ </plugin >
163
+ </plugins >
164
+ </build >
165
+ </project >
0 commit comments