|
5 | 5 | <parent> |
6 | 6 | <groupId>org.sonatype.oss</groupId> |
7 | 7 | <artifactId>oss-parent</artifactId> |
8 | | - <version>7</version> |
| 8 | + <version>9</version> |
9 | 9 | </parent> |
10 | | - |
11 | 10 | <groupId>org.scalaxb</groupId> |
12 | 11 | <artifactId>scalaxb-maven-plugin</artifactId> |
13 | | - <version>1.12.2</version> |
| 12 | + <version>1.12.3</version> |
14 | 13 | <packaging>maven-plugin</packaging> |
15 | 14 |
|
16 | 15 | <name>scalaxb Maven Plugin</name> |
|
102 | 101 | <version>3.0.24</version> |
103 | 102 | </dependency> |
104 | 103 |
|
| 104 | + <dependency> |
| 105 | + <groupId>log4j</groupId> |
| 106 | + <artifactId>log4j</artifactId> |
| 107 | + <version>1.2.17</version> |
| 108 | + </dependency> |
| 109 | + |
105 | 110 | <dependency> |
106 | 111 | <groupId>junit</groupId> |
107 | 112 | <artifactId>junit</artifactId> |
|
145 | 150 | <plugin> |
146 | 151 | <groupId>org.apache.maven.plugins</groupId> |
147 | 152 | <artifactId>maven-plugin-plugin</artifactId> |
148 | | - <version>3.3</version> |
| 153 | + <version>3.6.0</version> |
149 | 154 | <configuration> |
150 | 155 | <goalPrefix>scalaxb</goalPrefix> |
151 | 156 | <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
152 | 157 | <extractors> |
153 | 158 | <!-- scalaxb mojo uses annotations --> |
154 | 159 | <extractor>java-annotations</extractor> |
155 | | - <!-- generated help mojo uses javadoc tags --> |
156 | | - <extractor>java</extractor> |
157 | 160 | </extractors> |
158 | 161 | </configuration> |
159 | 162 | <executions> |
160 | 163 | <execution> |
161 | 164 | <id>mojo-descriptor</id> |
| 165 | + <phase>process-classes</phase> |
162 | 166 | <goals> |
163 | 167 | <goal>descriptor</goal> |
164 | 168 | </goals> |
165 | 169 | </execution> |
| 170 | + </executions> |
| 171 | + </plugin> |
| 172 | + |
| 173 | + <plugin> |
| 174 | + <groupId>org.apache.maven.plugins</groupId> |
| 175 | + <artifactId>maven-source-plugin</artifactId> |
| 176 | + <version>2.2.1</version> |
| 177 | + <executions> |
166 | 178 | <execution> |
167 | | - <id>generated-helpmojo</id> |
| 179 | + <id>attach-sources</id> |
168 | 180 | <goals> |
169 | | - <goal>helpmojo</goal> |
| 181 | + <goal>jar-no-fork</goal> |
170 | 182 | </goals> |
171 | 183 | </execution> |
172 | 184 | </executions> |
173 | 185 | </plugin> |
| 186 | + |
| 187 | + <plugin> |
| 188 | + <groupId>org.apache.maven.plugins</groupId> |
| 189 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 190 | + <version>2.9.1</version> |
| 191 | + <executions> |
| 192 | + <execution> |
| 193 | + <id>attach-javadocs</id> |
| 194 | + <goals> |
| 195 | + <goal>jar</goal> |
| 196 | + </goals> |
| 197 | + </execution> |
| 198 | + </executions> |
| 199 | + </plugin> |
| 200 | + |
| 201 | + <plugin> |
| 202 | + <groupId>org.apache.maven.plugins</groupId> |
| 203 | + <artifactId>maven-gpg-plugin</artifactId> |
| 204 | + <version>1.5</version> |
| 205 | + <executions> |
| 206 | + <execution> |
| 207 | + <id>sign-artifacts</id> |
| 208 | + <phase>verify</phase> |
| 209 | + <goals> |
| 210 | + <goal>sign</goal> |
| 211 | + </goals> |
| 212 | + </execution> |
| 213 | + </executions> |
| 214 | + </plugin> |
| 215 | + |
| 216 | + <plugin> |
| 217 | + <groupId>org.sonatype.central</groupId> |
| 218 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 219 | + <version>0.9.0</version> |
| 220 | + <extensions>true</extensions> |
| 221 | + <configuration> |
| 222 | + <publishingServerId>central</publishingServerId> |
| 223 | + </configuration> |
| 224 | + </plugin> |
174 | 225 | </plugins> |
175 | 226 |
|
176 | 227 | <pluginManagement> |
|
0 commit comments