|
19 | 19 | <licenses> |
20 | 20 | <license> |
21 | 21 | <name>MIT License</name> |
22 | | - <url>https://github.com/sterlp/spring-persistent-tasks/blob/main/LICENSE</url> |
| 22 | + <url> |
| 23 | + https://github.com/sterlp/spring-persistent-tasks/blob/main/LICENSE</url> |
23 | 24 | <distribution>repo</distribution> |
24 | 25 | </license> |
25 | 26 | </licenses> |
|
86 | 87 |
|
87 | 88 | <reporting> |
88 | 89 | <plugins> |
| 90 | + <!-- PMD Plugin Configuration --> |
89 | 91 | <plugin> |
90 | 92 | <groupId>org.apache.maven.plugins</groupId> |
91 | 93 | <artifactId>maven-pmd-plugin</artifactId> |
92 | | - <version>3.13.0</version> |
| 94 | + <version>3.26.0</version> <!-- Use the correct version --> |
| 95 | + </plugin> |
| 96 | + |
| 97 | + <!-- Javadoc Plugin Configuration --> |
| 98 | + <plugin> |
| 99 | + <groupId>org.apache.maven.plugins</groupId> |
| 100 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 101 | + <version>3.7.0</version> |
| 102 | + </plugin> |
| 103 | + |
| 104 | + <!-- Site Plugin Configuration --> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-site-plugin</artifactId> |
| 108 | + <version>3.21.0</version> |
93 | 109 | </plugin> |
94 | 110 | </plugins> |
95 | 111 | </reporting> |
96 | 112 |
|
97 | 113 | <build> |
98 | 114 | <pluginManagement> |
99 | 115 | <plugins> |
100 | | - |
| 116 | + <plugin> |
| 117 | + <groupId>org.apache.maven.plugins</groupId> |
| 118 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 119 | + <version>3.7.0</version> |
| 120 | + <executions> |
| 121 | + <execution> |
| 122 | + <id>attach-javadoc</id> |
| 123 | + <phase>package</phase> |
| 124 | + <goals> |
| 125 | + <goal>jar</goal> |
| 126 | + </goals> |
| 127 | + </execution> |
| 128 | + </executions> |
| 129 | + </plugin> |
| 130 | + <plugin> |
| 131 | + <groupId>org.apache.maven.plugins</groupId> |
| 132 | + <artifactId>maven-source-plugin</artifactId> |
| 133 | + <version>3.3.1</version> |
| 134 | + <executions> |
| 135 | + <execution> |
| 136 | + <id>attach-sources</id> |
| 137 | + <phase>package</phase> |
| 138 | + <goals> |
| 139 | + <goal>jar</goal> |
| 140 | + </goals> |
| 141 | + </execution> |
| 142 | + </executions> |
| 143 | + </plugin> |
101 | 144 | <plugin> |
102 | 145 | <groupId>org.apache.maven.plugins</groupId> |
103 | 146 | <artifactId>maven-compiler-plugin</artifactId> |
|
139 | 182 | <id>release</id> |
140 | 183 | <build> |
141 | 184 | <plugins> |
142 | | - <plugin> |
143 | | - <groupId>org.apache.maven.plugins</groupId> |
144 | | - <artifactId>maven-javadoc-plugin</artifactId> |
145 | | - <version>3.7.0</version> |
146 | | - <executions> |
147 | | - <execution> |
148 | | - <id>attach-javadocs</id> |
149 | | - <goals> |
150 | | - <goal>jar</goal> |
151 | | - </goals> |
152 | | - </execution> |
153 | | - </executions> |
154 | | - </plugin> |
155 | | - <plugin> |
156 | | - <groupId>org.apache.maven.plugins</groupId> |
157 | | - <artifactId>maven-source-plugin</artifactId> |
158 | | - <version>3.3.1</version> |
159 | | - <executions> |
160 | | - <execution> |
161 | | - <id>attach-sources</id> |
162 | | - <goals> |
163 | | - <goal>jar</goal> |
164 | | - </goals> |
165 | | - </execution> |
166 | | - </executions> |
167 | | - </plugin> |
168 | 185 | <plugin> |
169 | 186 | <groupId>org.apache.maven.plugins</groupId> |
170 | 187 | <artifactId>maven-gpg-plugin</artifactId> |
|
0 commit comments