|
110 | 110 | <!-- No java source files for this project --> |
111 | 111 | <maven.javadoc.skip>true</maven.javadoc.skip> |
112 | 112 | </properties> |
| 113 | + |
113 | 114 | <build> |
114 | | - <plugins> |
115 | | - <plugin> |
116 | | - <artifactId>maven-compiler-plugin</artifactId> |
117 | | - <configuration> |
118 | | - <annotationProcessorPaths> |
119 | | - <path> |
120 | | - <groupId>org.scijava</groupId> |
121 | | - <artifactId>scijava-ops-indexer</artifactId> |
122 | | - <version>${project.version}</version> |
123 | | - </path> |
124 | | - </annotationProcessorPaths> |
125 | | - <fork>true</fork> |
126 | | - <showWarnings>true</showWarnings> |
127 | | - <compilerArgs> |
128 | | - <arg>-Aparse.ops="${scijava.parse.ops}"</arg> |
129 | | - <arg>-Aop.version="${project.version}"</arg> |
130 | | - </compilerArgs> |
131 | | - </configuration> |
132 | | - </plugin> |
133 | | - <plugin> |
134 | | - <artifactId>maven-javadoc-plugin</artifactId> |
135 | | - <configuration> |
136 | | - <tagletArtifacts> |
137 | | - <tagletArtifact> |
138 | | - <groupId>org.scijava</groupId> |
139 | | - <artifactId>scijava-taglets</artifactId> |
140 | | - <version>${project.version}</version> |
141 | | - </tagletArtifact> |
142 | | - </tagletArtifacts> |
143 | | - </configuration> |
144 | | - </plugin> |
145 | | - <plugin> |
146 | | - <artifactId>maven-enforcer-plugin</artifactId> |
147 | | - <dependencies> |
148 | | - <dependency> |
149 | | - <groupId>org.scijava</groupId> |
150 | | - <artifactId>scijava-maven-plugin</artifactId> |
151 | | - <version>2.2.0</version> |
152 | | - </dependency> |
153 | | - </dependencies> |
154 | | - <executions> |
155 | | - <execution> |
156 | | - <id>enforce-no-package-cycles</id> |
157 | | - <goals> |
158 | | - <goal>enforce</goal> |
159 | | - </goals> |
160 | | - <phase>test</phase> |
161 | | - <configuration> |
162 | | - <rules> |
163 | | - <NoPackageCyclesRule |
164 | | - implementation="org.scijava.maven.plugin.enforcer.NoPackageCyclesRule" /> |
165 | | - </rules> |
166 | | - </configuration> |
167 | | - </execution> |
168 | | - <execution> |
169 | | - <id>enforce-no-subpackage-dependence</id> |
170 | | - <goals> |
171 | | - <goal>enforce</goal> |
172 | | - </goals> |
173 | | - <phase>test</phase> |
174 | | - <configuration> |
175 | | - <rules> |
176 | | - <NoSubpackageDependenceRule |
177 | | - implementation="org.scijava.maven.plugin.enforcer.NoSubpackageDependenceRule" /> |
178 | | - </rules> |
179 | | - </configuration> |
180 | | - </execution> |
181 | | - </executions> |
182 | | - </plugin> |
183 | | - <plugin> |
184 | | - <groupId>com.alexecollins.maven.plugin</groupId> |
185 | | - <artifactId>script-maven-plugin</artifactId> |
186 | | - <version>${script-maven-plugin.version}</version> |
187 | | - </plugin> |
188 | | - </plugins> |
189 | 115 | <pluginManagement> |
190 | 116 | <plugins> |
191 | 117 | <plugin> |
|
264 | 190 | </plugin> |
265 | 191 | </plugins> |
266 | 192 | </pluginManagement> |
| 193 | + <plugins> |
| 194 | + <plugin> |
| 195 | + <artifactId>maven-compiler-plugin</artifactId> |
| 196 | + <configuration> |
| 197 | + <annotationProcessorPaths> |
| 198 | + <path> |
| 199 | + <groupId>org.scijava</groupId> |
| 200 | + <artifactId>scijava-ops-indexer</artifactId> |
| 201 | + <version>${project.version}</version> |
| 202 | + </path> |
| 203 | + </annotationProcessorPaths> |
| 204 | + <fork>true</fork> |
| 205 | + <showWarnings>true</showWarnings> |
| 206 | + <compilerArgs> |
| 207 | + <arg>-Aparse.ops="${scijava.parse.ops}"</arg> |
| 208 | + <arg>-Aop.version="${project.version}"</arg> |
| 209 | + </compilerArgs> |
| 210 | + </configuration> |
| 211 | + </plugin> |
| 212 | + <plugin> |
| 213 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 214 | + <configuration> |
| 215 | + <tagletArtifacts> |
| 216 | + <tagletArtifact> |
| 217 | + <groupId>org.scijava</groupId> |
| 218 | + <artifactId>scijava-taglets</artifactId> |
| 219 | + <version>${project.version}</version> |
| 220 | + </tagletArtifact> |
| 221 | + </tagletArtifacts> |
| 222 | + </configuration> |
| 223 | + </plugin> |
| 224 | + <plugin> |
| 225 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 226 | + <dependencies> |
| 227 | + <dependency> |
| 228 | + <groupId>org.scijava</groupId> |
| 229 | + <artifactId>scijava-maven-plugin</artifactId> |
| 230 | + <version>2.2.0</version> |
| 231 | + </dependency> |
| 232 | + </dependencies> |
| 233 | + <executions> |
| 234 | + <execution> |
| 235 | + <id>enforce-no-package-cycles</id> |
| 236 | + <goals> |
| 237 | + <goal>enforce</goal> |
| 238 | + </goals> |
| 239 | + <phase>test</phase> |
| 240 | + <configuration> |
| 241 | + <rules> |
| 242 | + <NoPackageCyclesRule |
| 243 | + implementation="org.scijava.maven.plugin.enforcer.NoPackageCyclesRule" /> |
| 244 | + </rules> |
| 245 | + </configuration> |
| 246 | + </execution> |
| 247 | + <execution> |
| 248 | + <id>enforce-no-subpackage-dependence</id> |
| 249 | + <goals> |
| 250 | + <goal>enforce</goal> |
| 251 | + </goals> |
| 252 | + <phase>test</phase> |
| 253 | + <configuration> |
| 254 | + <rules> |
| 255 | + <NoSubpackageDependenceRule |
| 256 | + implementation="org.scijava.maven.plugin.enforcer.NoSubpackageDependenceRule" /> |
| 257 | + </rules> |
| 258 | + </configuration> |
| 259 | + </execution> |
| 260 | + </executions> |
| 261 | + </plugin> |
| 262 | + <plugin> |
| 263 | + <groupId>com.alexecollins.maven.plugin</groupId> |
| 264 | + <artifactId>script-maven-plugin</artifactId> |
| 265 | + <version>${script-maven-plugin.version}</version> |
| 266 | + </plugin> |
| 267 | + </plugins> |
267 | 268 | </build> |
| 269 | + |
268 | 270 | <profiles> |
269 | 271 | <profile> |
270 | 272 | <id>benchmarks</id> |
|
0 commit comments