|
5 | 5 | <groupId>org.sonatype.oss</groupId> |
6 | 6 | <artifactId>oss-parent</artifactId> |
7 | 7 | <version>9</version> |
| 8 | + <relativePath /> |
8 | 9 | </parent> |
9 | 10 |
|
10 | 11 | <groupId>io.github.git-commit-id</groupId> |
|
21 | 22 | </description> |
22 | 23 |
|
23 | 24 | <prerequisites> |
24 | | - <maven>[${maven-plugin-api.version},)</maven> |
| 25 | + <maven>[3.2.5,)</maven> |
25 | 26 | </prerequisites> |
26 | 27 |
|
27 | 28 | <licenses> |
|
46 | 47 |
|
47 | 48 | <java.target>11</java.target> |
48 | 49 |
|
49 | | - <maven-plugin-api.version>3.1.0-alpha-1</maven-plugin-api.version> |
50 | | - <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version> |
| 50 | + <maven-plugin-api.version>3.9.2</maven-plugin-api.version> |
| 51 | + <maven-plugin-plugin.version>3.9.0</maven-plugin-plugin.version> |
51 | 52 |
|
52 | 53 | <junit.version>4.13.2</junit.version> |
53 | 54 | <mockito.version>5.1.1</mockito.version> |
|
75 | 76 | <!-- GIT COMMIT ID PLUGIN CONFIGURATION --> |
76 | 77 | <resources> |
77 | 78 | <resource> |
78 | | - <directory>src/main/resources</directory> |
| 79 | + <directory>${project.basedir}/src/main/resources</directory> |
79 | 80 | <filtering>true</filtering> |
80 | 81 | <includes> |
81 | 82 | <include>**/*.properties</include> |
|
85 | 86 | </resources> |
86 | 87 | <testResources> |
87 | 88 | <testResource> |
88 | | - <directory>src/test/resources</directory> |
| 89 | + <directory>${project.basedir}/src/test/resources</directory> |
89 | 90 | <excludes> |
90 | 91 | <exclude>_git_*/**</exclude> |
91 | 92 | <exclude>README.md</exclude> |
|
101 | 102 | </plugin> |
102 | 103 | <plugin> |
103 | 104 | <artifactId>maven-assembly-plugin</artifactId> |
104 | | - <version>3.4.2</version> |
| 105 | + <version>3.6.0</version> |
105 | 106 | </plugin> |
106 | 107 | <plugin> |
107 | 108 | <artifactId>maven-dependency-plugin</artifactId> |
108 | 109 | <version>3.5.0</version> |
109 | 110 | </plugin> |
110 | 111 | <plugin> |
111 | 112 | <artifactId>maven-release-plugin</artifactId> |
112 | | - <version>3.0.0-M7</version> |
| 113 | + <version>3.0.0</version> |
113 | 114 | </plugin> |
114 | 115 | <plugin> |
115 | 116 | <artifactId>maven-enforcer-plugin</artifactId> |
116 | | - <version>3.2.1</version> |
| 117 | + <version>3.3.0</version> |
117 | 118 | </plugin> |
118 | 119 | <plugin> |
119 | 120 | <artifactId>maven-compiler-plugin</artifactId> |
120 | | - <version>3.8.1</version> |
| 121 | + <version>3.11.0</version> |
121 | 122 | </plugin> |
122 | 123 | <plugin> |
123 | 124 | <artifactId>maven-gpg-plugin</artifactId> |
124 | 125 | <version>3.1.0</version> |
125 | 126 | </plugin> |
126 | 127 | <plugin> |
127 | 128 | <artifactId>maven-clean-plugin</artifactId> |
128 | | - <version>3.1.0</version> |
| 129 | + <version>3.2.0</version> |
129 | 130 | </plugin> |
130 | 131 | <plugin> |
131 | 132 | <artifactId>maven-resources-plugin</artifactId> |
132 | | - <version>3.1.0</version> |
| 133 | + <version>3.3.1</version> |
133 | 134 | </plugin> |
134 | 135 | <plugin> |
135 | 136 | <artifactId>maven-jar-plugin</artifactId> |
136 | | - <version>3.2.0</version> |
| 137 | + <version>3.3.0</version> |
137 | 138 | </plugin> |
138 | 139 | <plugin> |
139 | 140 | <artifactId>maven-plugin-plugin</artifactId> |
|
145 | 146 | </plugin> |
146 | 147 | <plugin> |
147 | 148 | <artifactId>maven-install-plugin</artifactId> |
148 | | - <version>2.5.2</version> |
| 149 | + <version>3.1.1</version> |
149 | 150 | </plugin> |
150 | 151 | <plugin> |
151 | 152 | <artifactId>maven-deploy-plugin</artifactId> |
|
157 | 158 | </plugin> |
158 | 159 | <plugin> |
159 | 160 | <artifactId>maven-javadoc-plugin</artifactId> |
160 | | - <version>3.2.0</version> |
| 161 | + <version>3.5.0</version> |
161 | 162 | </plugin> |
162 | 163 | <plugin> |
163 | 164 | <artifactId>maven-source-plugin</artifactId> |
|
167 | 168 | </pluginManagement> |
168 | 169 |
|
169 | 170 | <plugins> |
| 171 | + <!-- Override oss parent downgrades --> |
| 172 | + <plugin> |
| 173 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 174 | + <version>3.3.0</version> |
| 175 | + </plugin> |
| 176 | + <plugin> |
| 177 | + <artifactId>maven-release-plugin</artifactId> |
| 178 | + <version>3.0.0</version> |
| 179 | + </plugin> |
| 180 | + |
170 | 181 | <!-- if you would like to run the git-commit-id-maven-plugin for your build, you could also include it here instead using a profile (see README.md) --> |
171 | 182 | <!-- Setting built-in java compiler properties --> |
172 | 183 | <plugin> |
|
443 | 454 | <build> |
444 | 455 | <plugins> |
445 | 456 | <plugin> |
446 | | - <groupId>org.eluder.coveralls</groupId> |
| 457 | + <groupId>io.jsonwebtoken.coveralls</groupId> |
447 | 458 | <artifactId>coveralls-maven-plugin</artifactId> |
448 | | - <version>4.3.0</version> |
| 459 | + <version>4.4.1</version> |
449 | 460 | <!-- repo token is passed via -DrepoToken=yourcoverallsprojectrepositorytoken --> |
450 | 461 | <dependencies> |
451 | 462 | <!-- https://github.com/trautonen/coveralls-maven-plugin/issues/141 --> |
452 | 463 | <dependency> |
453 | | - <groupId>javax.xml.bind</groupId> |
454 | | - <artifactId>jaxb-api</artifactId> |
455 | | - <version>2.2.3</version> |
| 464 | + <groupId>jakarta.xml.bind</groupId> |
| 465 | + <artifactId>jakarta.xml.bind-api</artifactId> |
| 466 | + <version>2.3.3</version> |
456 | 467 | </dependency> |
457 | 468 | </dependencies> |
458 | 469 | </plugin> |
459 | | - <!-- cobertura-maven-plugin doesn't support java 8 https://github.com/mojohaus/cobertura-maven-plugin/issues/21--> |
460 | 470 | <plugin> |
461 | 471 | <groupId>org.jacoco</groupId> |
462 | 472 | <artifactId>jacoco-maven-plugin</artifactId> |
463 | | - <version>0.8.2</version> |
| 473 | + <version>0.8.10</version> |
464 | 474 | <executions> |
465 | 475 | <execution> |
466 | 476 | <id>prepare-agent</id> |
|
476 | 486 | <profile> |
477 | 487 | <id>checkstyle</id> |
478 | 488 | <properties> |
479 | | - <maven-checkstyle-plugin.version>3.1.0</maven-checkstyle-plugin.version> |
| 489 | + <maven-checkstyle-plugin.version>3.2.2</maven-checkstyle-plugin.version> |
480 | 490 | <!-- if you update the checkstyle version make sure you update the google_checks.xml inside the repository --> |
481 | 491 | <checkstyle.version>8.25</checkstyle.version> |
482 | 492 | <checkstyle.config.path>${basedir}/.github/.checkstyle</checkstyle.config.path> |
|
0 commit comments