|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <!--
|
3 |
| - Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved. |
4 |
| - This program and the accompanying materials are made available under the |
5 |
| - terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 |
6 |
| - which accompanies this distribution. |
7 |
| - The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html |
8 |
| - and the Eclipse Distribution License is available at |
9 |
| - http://www.eclipse.org/org/documents/edl-v10.php. |
| 3 | +
|
| 4 | + Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved. |
| 5 | +
|
| 6 | + This program and the accompanying materials are made available under the |
| 7 | + terms of the Eclipse Public License v. 2.0 which is available at |
| 8 | + http://www.eclipse.org/legal/epl-2.0, |
| 9 | + or the Eclipse Distribution License v. 1.0 which is available at |
| 10 | + http://www.eclipse.org/org/documents/edl-v10.php. |
| 11 | +
|
| 12 | + SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause |
| 13 | +
|
10 | 14 | -->
|
| 15 | + |
11 | 16 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
12 | 17 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
13 | 18 |
|
|
26 | 31 |
|
27 | 32 | <description>Eclipse Yasson. Reference implementation of JSR-367 (JSON-B).</description>
|
28 | 33 | <url>https://projects.eclipse.org/projects/ee4j.yasson</url>
|
29 |
| - |
| 34 | + |
30 | 35 | <properties>
|
31 | 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
32 | 37 | <jakarta.json.version>1.1.6</jakarta.json.version>
|
33 | 38 | <jakarta.json.bind.version>1.0.2</jakarta.json.bind.version>
|
34 | 39 | <netbeans.hint.jdkPlatform>JDK_9</netbeans.hint.jdkPlatform>
|
35 | 40 | </properties>
|
36 |
| - |
| 41 | + |
37 | 42 | <dependencies>
|
38 | 43 | <!-- Compile dependencies -->
|
39 | 44 | <dependency>
|
|
104 | 109 |
|
105 | 110 | <licenses>
|
106 | 111 | <license>
|
107 |
| - <name>Eclipse Distribution License 1.0 (BSD)</name> |
108 |
| - <url>https://projects.eclipse.org/content/eclipse-distribution-license-1.0-bsd</url> |
| 112 | + <name>Eclipse Public License v. 2.0</name> |
| 113 | + <url>http://www.eclipse.org/legal/epl-v20.html</url> |
| 114 | + <distribution>repo</distribution> |
| 115 | + <comments>Standard Eclipse License</comments> |
109 | 116 | </license>
|
110 | 117 | <license>
|
111 |
| - <name>Eclipse Public License 1.0</name> |
112 |
| - <url>https://projects.eclipse.org/content/eclipse-public-license-1.0</url> |
| 118 | + <name>Eclipse Distribution License v. 1.0</name> |
| 119 | + <url>http://www.eclipse.org/org/documents/edl-v10.php</url> |
| 120 | + <distribution>repo</distribution> |
| 121 | + <comments>Standard Eclipse Distribution License</comments> |
113 | 122 | </license>
|
114 | 123 | </licenses>
|
115 | 124 |
|
|
184 | 193 | </plugins>
|
185 | 194 | </build>
|
186 | 195 | </profile>
|
| 196 | + <profile> |
| 197 | + <id>copyright</id> |
| 198 | + <build> |
| 199 | + <plugins> |
| 200 | + <plugin> |
| 201 | + <groupId>org.glassfish.copyright</groupId> |
| 202 | + <artifactId>glassfish-copyright-maven-plugin</artifactId> |
| 203 | + <executions> |
| 204 | + <execution> |
| 205 | + <id>run-copyright</id> |
| 206 | + <goals> |
| 207 | + <goal>check</goal> |
| 208 | + </goals> |
| 209 | + <phase>validate</phase> |
| 210 | + </execution> |
| 211 | + </executions> |
| 212 | + </plugin> |
| 213 | + </plugins> |
| 214 | + </build> |
| 215 | + </profile> |
187 | 216 | </profiles>
|
188 | 217 |
|
189 | 218 | <build>
|
|
478 | 507 | </dependency>
|
479 | 508 | </dependencies>
|
480 | 509 | </plugin>
|
| 510 | + <plugin> |
| 511 | + <groupId>org.glassfish.copyright</groupId> |
| 512 | + <artifactId>glassfish-copyright-maven-plugin</artifactId> |
| 513 | + <version>2.2</version> |
| 514 | + <configuration> |
| 515 | + <templateFile>etc/copyright.txt</templateFile> |
| 516 | + <excludeFile>etc/copyright-exclude.txt</excludeFile> |
| 517 | + <scm>git</scm> |
| 518 | + <debug>false</debug> |
| 519 | + <scmOnly>true</scmOnly> |
| 520 | + <warn>true</warn> |
| 521 | + <ignoreYear>false</ignoreYear> |
| 522 | + <preserveCopyrights>true</preserveCopyrights> |
| 523 | + </configuration> |
| 524 | + </plugin> |
481 | 525 | </plugins>
|
482 | 526 | </pluginManagement>
|
483 | 527 | <plugins>
|
|
0 commit comments