|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<!-- |
3 |
| - ~ Licensed to the Apache Software Foundation (ASF) under one |
4 |
| - ~ or more contributor license agreements. See the NOTICE file |
5 |
| - ~ distributed with this work for additional information |
6 |
| - ~ regarding copyright ownership. The ASF licenses this file |
7 |
| - ~ to you under the Apache License, Version 2.0 (the |
8 |
| - ~ "License"); you may not use this file except in compliance |
9 |
| - ~ with the License. You may obtain a copy of the License at |
10 |
| - ~ |
11 |
| - ~ http://www.apache.org/licenses/LICENSE-2.0 |
12 |
| - ~ |
13 |
| - ~ Unless required by applicable law or agreed to in writing, |
14 |
| - ~ software distributed under the License is distributed on an |
15 |
| - ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
16 |
| - ~ KIND, either express or implied. See the License for the |
17 |
| - ~ specific language governing permissions and limitations |
18 |
| - ~ under the License. |
19 |
| - --> |
20 |
| - |
21 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" |
22 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
23 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
24 |
| - <modelVersion>4.0.0</modelVersion> |
25 |
| - |
26 |
| - <groupId>org.apache.maven.plugins.checkstyle</groupId> |
27 |
| - <artifactId>multi-sourcefolder</artifactId> |
28 |
| - <version>1.0-SNAPSHOT</version> |
29 |
| - |
30 |
| - <url>https://issues.apache.org/jira/browse/MCHECKSTYLE-70</url> |
31 |
| - |
32 |
| - <properties> |
33 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
34 |
| - </properties> |
35 |
| - |
36 |
| - <build> |
37 |
| - <plugins> |
38 |
| - <plugin> |
39 |
| - <groupId>org.codehaus.mojo</groupId> |
40 |
| - <artifactId>build-helper-maven-plugin</artifactId> |
41 |
| - <version>1.7</version> |
42 |
| - <executions> |
43 |
| - <execution> |
44 |
| - <id>main-source</id> |
45 |
| - <goals> |
46 |
| - <goal>add-source</goal> |
47 |
| - </goals> |
48 |
| - <configuration> |
49 |
| - <sources> |
50 |
| - <source>src/additional/java</source> |
51 |
| - </sources> |
52 |
| - </configuration> |
53 |
| - </execution> |
54 |
| - <execution> |
55 |
| - <id>test-source</id> |
56 |
| - <goals> |
57 |
| - <goal>add-test-source</goal> |
58 |
| - </goals> |
59 |
| - <configuration> |
60 |
| - <sources> |
61 |
| - <source>src/test-additional/java</source> |
62 |
| - </sources> |
63 |
| - </configuration> |
64 |
| - </execution> |
65 |
| - </executions> |
66 |
| - </plugin> |
67 |
| - <plugin> |
68 |
| - <groupId>org.apache.maven.plugins</groupId> |
69 |
| - <artifactId>maven-checkstyle-plugin</artifactId> |
70 |
| - <version>@project.version@</version> |
71 |
| - <executions> |
72 |
| - <execution> |
73 |
| - <id>check</id> |
74 |
| - <goals> |
75 |
| - <goal>check</goal> |
76 |
| - </goals> |
77 |
| - <configuration> |
78 |
| - <includeTestSourceDirectory>true</includeTestSourceDirectory> |
79 |
| - </configuration> |
80 |
| - </execution> |
81 |
| - </executions> |
82 |
| - </plugin> |
83 |
| - </plugins> |
84 |
| - </build> |
85 |
| -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | + ~ or more contributor license agreements. See the NOTICE file |
| 5 | + ~ distributed with this work for additional information |
| 6 | + ~ regarding copyright ownership. The ASF licenses this file |
| 7 | + ~ to you under the Apache License, Version 2.0 (the |
| 8 | + ~ "License"); you may not use this file except in compliance |
| 9 | + ~ with the License. You may obtain a copy of the License at |
| 10 | + ~ |
| 11 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | + ~ |
| 13 | + ~ Unless required by applicable law or agreed to in writing, |
| 14 | + ~ software distributed under the License is distributed on an |
| 15 | + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | + ~ KIND, either express or implied. See the License for the |
| 17 | + ~ specific language governing permissions and limitations |
| 18 | + ~ under the License. |
| 19 | + --> |
| 20 | + |
| 21 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | + <modelVersion>4.0.0</modelVersion> |
| 25 | + |
| 26 | + <groupId>org.apache.maven.plugins.checkstyle</groupId> |
| 27 | + <artifactId>multi-sourcefolder</artifactId> |
| 28 | + <version>1.0-SNAPSHOT</version> |
| 29 | + |
| 30 | + <url>https://issues.apache.org/jira/browse/MCHECKSTYLE-70</url> |
| 31 | + |
| 32 | + <properties> |
| 33 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 34 | + </properties> |
| 35 | + |
| 36 | + <build> |
| 37 | + <plugins> |
| 38 | + <plugin> |
| 39 | + <groupId>org.codehaus.mojo</groupId> |
| 40 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 41 | + <version>3.4.0</version> |
| 42 | + <executions> |
| 43 | + <execution> |
| 44 | + <id>main-source</id> |
| 45 | + <goals> |
| 46 | + <goal>add-source</goal> |
| 47 | + </goals> |
| 48 | + <configuration> |
| 49 | + <sources> |
| 50 | + <source>src/additional/java</source> |
| 51 | + </sources> |
| 52 | + </configuration> |
| 53 | + </execution> |
| 54 | + <execution> |
| 55 | + <id>test-source</id> |
| 56 | + <goals> |
| 57 | + <goal>add-test-source</goal> |
| 58 | + </goals> |
| 59 | + <configuration> |
| 60 | + <sources> |
| 61 | + <source>src/test-additional/java</source> |
| 62 | + </sources> |
| 63 | + </configuration> |
| 64 | + </execution> |
| 65 | + </executions> |
| 66 | + </plugin> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 70 | + <version>@project.version@</version> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>check</id> |
| 74 | + <goals> |
| 75 | + <goal>check</goal> |
| 76 | + </goals> |
| 77 | + <configuration> |
| 78 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 79 | + </configuration> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | +</project> |
0 commit comments