|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project |
3 | | - xmlns="http://maven.apache.org/POM/4.0.0" |
4 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
5 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
6 | | - > |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 6 | +> |
7 | 7 |
|
8 | 8 | <modelVersion>4.0.0</modelVersion> |
9 | 9 | <groupId>com.apicatalog</groupId> |
|
12 | 12 | <packaging>pom</packaging> |
13 | 13 |
|
14 | 14 | <name>Titanium JSON-LD 1.1</name> |
15 | | - |
| 15 | + |
16 | 16 | <description> |
17 | 17 | A JSON-LD 1.1 Processor & API |
18 | 18 | </description> |
19 | | - |
| 19 | + |
20 | 20 | <licenses> |
21 | 21 | <license> |
22 | 22 | <name>Apache License, Version 2.0</name> |
23 | 23 | <url>http://apache.org/licenses/LICENSE-2.0</url> |
24 | 24 | </license> |
25 | | - </licenses> |
26 | | - |
| 25 | + </licenses> |
| 26 | + |
27 | 27 | <issueManagement> |
28 | 28 | <system>github</system> |
29 | 29 | <url>https://github.com/filip26/titanium-json-ld/issues</url> |
30 | 30 | </issueManagement> |
31 | | - |
| 31 | + |
32 | 32 | <developers> |
33 | 33 | <developer> |
34 | | - <id>filip26</id> |
35 | | - <name>Filip Kolarik</name> |
36 | | - <email>filip26@gmail.com</email> |
37 | | - <roles><role>author</role></roles> |
| 34 | + <id>filip26</id> |
| 35 | + <name>Filip Kolarik</name> |
| 36 | + <email>filip26@gmail.com</email> |
| 37 | + <roles> |
| 38 | + <role>author</role> |
| 39 | + </roles> |
38 | 40 | </developer> |
39 | 41 | </developers> |
40 | | - |
| 42 | + |
41 | 43 | <inceptionYear>2020</inceptionYear> |
42 | | - |
| 44 | + |
43 | 45 | <properties> |
44 | 46 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
45 | 47 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
46 | | - |
47 | | - <jakarta.json.version>2.0.1</jakarta.json.version> |
| 48 | + |
| 49 | + <jakarta.json.version>2.0.1</jakarta.json.version> |
48 | 50 |
|
49 | 51 | <argLine>-Dfile.encoding=UTF-8</argLine> |
50 | 52 |
|
|
63 | 65 | <version>${jakarta.json.version}</version> |
64 | 66 | <scope>provided</scope> |
65 | 67 | </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>com.google.guava</groupId> |
| 70 | + <artifactId>guava</artifactId> |
| 71 | + <version>31.0.1-jre</version> |
| 72 | + </dependency> |
66 | 73 | <!-- Tests --> |
67 | | - <dependency> |
| 74 | + <dependency> |
68 | 75 | <groupId>org.glassfish</groupId> |
69 | 76 | <artifactId>jakarta.json</artifactId> |
70 | 77 | <version>${jakarta.json.version}</version> |
71 | 78 | <scope>test</scope> |
72 | | - </dependency> |
73 | | - <dependency> |
74 | | - <groupId>org.junit.jupiter</groupId> |
75 | | - <artifactId>junit-jupiter</artifactId> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.junit.jupiter</groupId> |
| 82 | + <artifactId>junit-jupiter</artifactId> |
76 | 83 | <version>${junit.version}</version> |
77 | | - <scope>test</scope> |
78 | | - </dependency> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
79 | 86 | <dependency> |
80 | 87 | <groupId>com.github.tomakehurst</groupId> |
81 | 88 | <artifactId>wiremock-jre8</artifactId> |
82 | 89 | <version>${wiremock.version}</version> |
83 | 90 | <scope>test</scope> |
84 | 91 | </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.openjdk.jmh</groupId> |
| 94 | + <artifactId>jmh-core</artifactId> |
| 95 | + <version>1.36</version> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>org.openjdk.jmh</groupId> |
| 100 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 101 | + <version>1.36</version> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
85 | 104 | </dependencies> |
86 | | - <build> |
| 105 | + <build> |
87 | 106 | <plugins> |
88 | 107 | <plugin> |
89 | 108 | <artifactId>maven-jar-plugin</artifactId> |
|
109 | 128 | </configuration> |
110 | 129 | </execution> |
111 | 130 | </executions> |
112 | | - </plugin> |
| 131 | + </plugin> |
113 | 132 | <plugin> |
114 | 133 | <groupId>org.apache.maven.plugins</groupId> |
115 | 134 | <artifactId>maven-source-plugin</artifactId> |
|
122 | 141 | </goals> |
123 | 142 | </execution> |
124 | 143 | </executions> |
125 | | - </plugin> |
| 144 | + </plugin> |
126 | 145 | <plugin> |
127 | 146 | <groupId>org.apache.maven.plugins</groupId> |
128 | 147 | <artifactId>maven-javadoc-plugin</artifactId> |
|
135 | 154 | </goals> |
136 | 155 | </execution> |
137 | 156 | </executions> |
138 | | - </plugin> |
| 157 | + </plugin> |
139 | 158 | <plugin> |
140 | 159 | <groupId>org.jacoco</groupId> |
141 | 160 | <artifactId>jacoco-maven-plugin</artifactId> |
|
155 | 174 | </goals> |
156 | 175 | </execution> |
157 | 176 | </executions> |
158 | | - </plugin> |
159 | | - <plugin> |
160 | | - <groupId>org.codehaus.mojo</groupId> |
161 | | - <artifactId>flatten-maven-plugin</artifactId> |
162 | | - <version>1.5.0</version> |
163 | | - <configuration> |
164 | | - <flattenMode>oss</flattenMode> |
165 | | - </configuration> |
166 | | - <executions> |
167 | | - <!-- enable flattening --> |
168 | | - <execution> |
169 | | - <id>flatten</id> |
170 | | - <phase>process-resources</phase> |
171 | | - <goals> |
172 | | - <goal>flatten</goal> |
173 | | - </goals> |
174 | | - </execution> |
175 | | - <!-- ensure proper cleanup --> |
176 | | - <execution> |
177 | | - <id>flatten.clean</id> |
178 | | - <phase>clean</phase> |
179 | | - <goals> |
180 | | - <goal>clean</goal> |
181 | | - </goals> |
182 | | - </execution> |
183 | | - </executions> |
184 | | - </plugin> |
185 | | - <plugin> |
186 | | - <artifactId>maven-surefire-plugin</artifactId> |
187 | | - <version>3.1.2</version> |
188 | | - </plugin> |
189 | | - <plugin> |
190 | | - <artifactId>maven-failsafe-plugin</artifactId> |
191 | | - <version>3.1.2</version> |
192 | | - </plugin> |
| 177 | + </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.codehaus.mojo</groupId> |
| 180 | + <artifactId>flatten-maven-plugin</artifactId> |
| 181 | + <version>1.5.0</version> |
| 182 | + <configuration> |
| 183 | + <flattenMode>oss</flattenMode> |
| 184 | + </configuration> |
| 185 | + <executions> |
| 186 | + <!-- enable flattening --> |
| 187 | + <execution> |
| 188 | + <id>flatten</id> |
| 189 | + <phase>process-resources</phase> |
| 190 | + <goals> |
| 191 | + <goal>flatten</goal> |
| 192 | + </goals> |
| 193 | + </execution> |
| 194 | + <!-- ensure proper cleanup --> |
| 195 | + <execution> |
| 196 | + <id>flatten.clean</id> |
| 197 | + <phase>clean</phase> |
| 198 | + <goals> |
| 199 | + <goal>clean</goal> |
| 200 | + </goals> |
| 201 | + </execution> |
| 202 | + </executions> |
| 203 | + </plugin> |
| 204 | + <plugin> |
| 205 | + <artifactId>maven-surefire-plugin</artifactId> |
| 206 | + <version>3.1.2</version> |
| 207 | + </plugin> |
| 208 | + <plugin> |
| 209 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 210 | + <version>3.1.2</version> |
| 211 | + </plugin> |
193 | 212 | </plugins> |
194 | 213 | </build> |
195 | 214 | <profiles> |
196 | 215 | <profile> |
197 | 216 | <id>maven-central</id> |
198 | | - <activation> |
199 | | - <activeByDefault>false</activeByDefault> |
200 | | - </activation> |
201 | | - <build> |
202 | | - <plugins> |
203 | | - <plugin> |
204 | | - <groupId>org.apache.maven.plugins</groupId> |
205 | | - <artifactId>maven-gpg-plugin</artifactId> |
206 | | - <version>3.1.0</version> |
207 | | - <executions> |
208 | | - <execution> |
209 | | - <id>sign-artifacts</id> |
210 | | - <phase>verify</phase> |
211 | | - <goals> |
212 | | - <goal>sign</goal> |
213 | | - </goals> |
214 | | - </execution> |
215 | | - </executions> |
216 | | - </plugin> |
217 | | - <plugin> |
218 | | - <groupId>org.sonatype.plugins</groupId> |
219 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
220 | | - <version>1.6.13</version> |
221 | | - <extensions>true</extensions> |
222 | | - <configuration> |
223 | | - <serverId>ossrh</serverId> |
224 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
225 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
226 | | - </configuration> |
227 | | - </plugin> |
228 | | - </plugins> |
229 | | - </build> |
230 | | - <distributionManagement> |
231 | | - <snapshotRepository> |
232 | | - <id>ossrh</id> |
233 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
234 | | - </snapshotRepository> |
235 | | - </distributionManagement> |
236 | | - </profile> |
| 217 | + <activation> |
| 218 | + <activeByDefault>false</activeByDefault> |
| 219 | + </activation> |
| 220 | + <build> |
| 221 | + <plugins> |
| 222 | + <plugin> |
| 223 | + <groupId>org.apache.maven.plugins</groupId> |
| 224 | + <artifactId>maven-gpg-plugin</artifactId> |
| 225 | + <version>3.1.0</version> |
| 226 | + <executions> |
| 227 | + <execution> |
| 228 | + <id>sign-artifacts</id> |
| 229 | + <phase>verify</phase> |
| 230 | + <goals> |
| 231 | + <goal>sign</goal> |
| 232 | + </goals> |
| 233 | + </execution> |
| 234 | + </executions> |
| 235 | + </plugin> |
| 236 | + <plugin> |
| 237 | + <groupId>org.sonatype.plugins</groupId> |
| 238 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 239 | + <version>1.6.13</version> |
| 240 | + <extensions>true</extensions> |
| 241 | + <configuration> |
| 242 | + <serverId>ossrh</serverId> |
| 243 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 244 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 245 | + </configuration> |
| 246 | + </plugin> |
| 247 | + </plugins> |
| 248 | + </build> |
| 249 | + <distributionManagement> |
| 250 | + <snapshotRepository> |
| 251 | + <id>ossrh</id> |
| 252 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 253 | + </snapshotRepository> |
| 254 | + </distributionManagement> |
| 255 | + </profile> |
237 | 256 | </profiles> |
238 | 257 | </project> |
0 commit comments