|
55 | 55 | <directory>target</directory> |
56 | 56 | <finalName>${project.artifactId}</finalName> |
57 | 57 | <plugins> |
| 58 | + <plugin> |
| 59 | + <groupId>org.apache.maven.plugins</groupId> |
| 60 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 61 | + <version>${maven-javadoc-plugin.version}</version> |
| 62 | + <configuration> |
| 63 | + <source>${maven.compiler.source}</source> |
| 64 | + <encoding>UTF-8</encoding> |
| 65 | + <maxmemory>1g</maxmemory> |
| 66 | + <failOnWarnings>false</failOnWarnings> |
| 67 | + <doclint>none</doclint> |
| 68 | + </configuration> |
| 69 | + <executions> |
| 70 | + <execution> |
| 71 | + <id>attach-javadocs</id> |
| 72 | + <phase>verify</phase> |
| 73 | + <goals> |
| 74 | + <goal>jar</goal> |
| 75 | + </goals> |
| 76 | + </execution> |
| 77 | + </executions> |
| 78 | + </plugin> |
58 | 79 | <plugin> |
59 | 80 | <groupId>com.github.spotbugs</groupId> |
60 | 81 | <artifactId>spotbugs-maven-plugin</artifactId> |
|
76 | 97 | </executions> |
77 | 98 | </plugin> |
78 | 99 | <plugin> |
79 | | - <groupId>pl.project13.maven</groupId> |
80 | | - <artifactId>git-commit-id-plugin</artifactId> |
| 100 | + <groupId>io.github.git-commit-id</groupId> |
| 101 | + <artifactId>git-commit-id-maven-plugin</artifactId> |
81 | 102 | <version>${git-commit-id-plugin.version}</version> |
82 | 103 | <executions> |
83 | 104 | <execution> |
|
166 | 187 | </goals> |
167 | 188 | <configuration> |
168 | 189 | <minimizeJar>false</minimizeJar> |
169 | | - <createDependencyReducedPom>true</createDependencyReducedPom> |
170 | | - <dependencyReducedPomLocation> |
171 | | - ${java.io.tmpdir}/dependency-reduced-pom.xml |
172 | | - </dependencyReducedPomLocation> |
| 190 | + <createDependencyReducedPom>false</createDependencyReducedPom> |
173 | 191 | <transformers> |
174 | 192 | <transformer |
175 | 193 | implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> |
|
421 | 439 | <revision>3.0.0</revision> |
422 | 440 | <!-- /RELEASE_VERSION --> |
423 | 441 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
424 | | - <maven.compiler.source>1.8</maven.compiler.source> |
425 | | - <maven.compiler.target>1.8</maven.compiler.target> |
| 442 | + <java.version>11</java.version> |
| 443 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 444 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
426 | 445 | <archunit.version>0.23.1</archunit.version> |
427 | 446 | <checkstyle.plugin.version>3.1.0</checkstyle.plugin.version> |
428 | 447 | <commons-cli.version>1.4</commons-cli.version> |
|
431 | 450 | <commons-text.version>1.9</commons-text.version> |
432 | 451 | <diffutils.version>1.3.0</diffutils.version> |
433 | 452 | <generex.version>1.0.2</generex.version> |
434 | | - <git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version><!--5.0.1 needs java11, will fix jgit issue--> |
| 453 | + <git-commit-id-plugin.version>5.0.1</git-commit-id-plugin.version> |
435 | 454 | <groovy.version>3.0.9</groovy.version> |
436 | 455 | <guava.version>30.1.1-jre</guava.version> |
437 | 456 | <handlebars-java.version>4.3.0</handlebars-java.version> |
|
0 commit comments