File tree 3 files changed +34
-17
lines changed
org.eclipse.jgit.benchmarks
3 files changed +34
-17
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<classpath >
3
- <classpathentry kind =" src" output =" target/classes" path =" src" >
3
+ <classpathentry including = " **/*.java " kind =" src" output =" target/classes" path =" src" >
4
4
<attributes >
5
5
<attribute name =" optional" value =" true" />
6
6
<attribute name =" maven.pomderived" value =" true" />
19
19
<classpathentry kind =" src" path =" .apt_generated" >
20
20
<attributes >
21
21
<attribute name =" optional" value =" true" />
22
- <attribute name =" maven.pomderived" value =" true" />
23
- <attribute name =" ignore_optional_problems" value =" true" />
24
- <attribute name =" m2e-apt" value =" true" />
25
- </attributes >
26
- </classpathentry >
27
- <classpathentry kind =" src" output =" target/test-classes" path =" target/generated-test-sources/test-annotations" >
28
- <attributes >
29
- <attribute name =" optional" value =" true" />
30
- <attribute name =" maven.pomderived" value =" true" />
31
- <attribute name =" ignore_optional_problems" value =" true" />
32
- <attribute name =" m2e-apt" value =" true" />
33
22
</attributes >
34
23
</classpathentry >
35
24
<classpathentry kind =" output" path =" target/classes" />
36
- </classpath >
25
+ </classpath >
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=enabled
42
42
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod =warning
43
43
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch =warning
44
44
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess =warning
45
- org.eclipse.jdt.core.compiler.problem.invalidJavadoc =error
45
+ org.eclipse.jdt.core.compiler.problem.invalidJavadoc =warning
46
46
org.eclipse.jdt.core.compiler.problem.invalidJavadocTags =enabled
47
47
org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef =enabled
48
48
org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef =enabled
@@ -57,7 +57,7 @@ org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
57
57
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding =disabled
58
58
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility =protected
59
59
org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription =return_tag
60
- org.eclipse.jdt.core.compiler.problem.missingJavadocTags =error
60
+ org.eclipse.jdt.core.compiler.problem.missingJavadocTags =warning
61
61
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsMethodTypeParameters =disabled
62
62
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding =disabled
63
63
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility =private
Original file line number Diff line number Diff line change 13
13
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
14
14
<modelVersion >4.0.0</modelVersion >
15
15
16
- <groupId >org.eclipse.jgit</groupId >
17
- <version >6.8.0-SNAPSHOT</version >
16
+ <parent >
17
+ <groupId >org.eclipse.jgit</groupId >
18
+ <artifactId >org.eclipse.jgit-parent</artifactId >
19
+ <version >6.8.0-SNAPSHOT</version >
20
+ </parent >
21
+
18
22
<artifactId >org.eclipse.jgit.benchmarks</artifactId >
19
23
<packaging >jar</packaging >
20
24
143
147
</execution >
144
148
</executions >
145
149
</plugin >
150
+ <plugin >
151
+ <groupId >org.apache.maven.plugins</groupId >
152
+ <artifactId >maven-javadoc-plugin</artifactId >
153
+ <configuration >
154
+ <!-- We check javadoc when compiling with ecj (option -Pecj) and configurations
155
+ set in .settings/org.eclipse.jdt.core.prefs. This allows more fine grained
156
+ configuration and fails the build on missing javadoc for protected and
157
+ public but not for private classes, methods and fields. We don't want
158
+ to check javadoc on tests. We can reconsider to configure this on javadoc
159
+ when it starts supporting access specifiers so that we can set
160
+ -Xdoclint:all,-missing/private -->
161
+ <additionalJOption >-Xdoclint:none</additionalJOption >
162
+ <encoding >${project.build.sourceEncoding} </encoding >
163
+ <quiet >true</quiet >
164
+ <failOnWarnings >false</failOnWarnings >
165
+ </configuration >
166
+ <executions >
167
+ <execution >
168
+ <goals >
169
+ <goal >jar</goal >
170
+ </goals >
171
+ </execution >
172
+ </executions >
173
+ </plugin >
146
174
</plugins >
147
175
<pluginManagement >
148
176
<plugins >
You can’t perform that action at this time.
0 commit comments