Skip to content

Commit c29f361

Browse files
author
Vladimir Kotal
committed
move javadoc to verify phase
fixes #2063
1 parent 6ed99b2 commit c29f361

File tree

60 files changed

+97
-104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+97
-104
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ before_script:
2727
- if `which cvs`; then cvs --version; fi
2828
- if `which mtn`; then mtn --version; fi
2929
- if `which bzr`; then bzr version; fi
30-
# - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd opengrok-indexer && mvn javadoc:javadoc && cd ../opengrok-web && mvn javadoc:javadoc && cd ..; fi
3130

3231
env:
3332
global:

plugins/pom.xml

Lines changed: 4 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -37,34 +37,20 @@ Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3737
</parent>
3838

3939
<build>
40-
<sourceDirectory>.</sourceDirectory>
41-
<!-- Note that the plugins/UserPlugin/test/ directory is added via the build-helper plugin below -->
42-
<testSourceDirectory>LdapPlugin/test</testSourceDirectory>
40+
<sourceDirectory>src</sourceDirectory>
41+
<testSourceDirectory>test</testSourceDirectory>
4342

4443
<testResources>
4544
<testResource>
4645
<targetPath>opengrok/auth/plugin/</targetPath>
47-
<directory>LdapPlugin/test/opengrok/auth/plugin/</directory>
46+
<directory>test/opengrok/auth/plugin/</directory>
4847
<excludes>
4948
<exclude>*.java</exclude>
5049
</excludes>
5150
</testResource>
5251
</testResources>
53-
54-
<plugins>
55-
56-
<plugin>
57-
<artifactId>maven-compiler-plugin</artifactId>
58-
<version>2.0.2</version>
59-
<configuration>
60-
<includes>
61-
<include>**/LdapPlugin/src/**</include>
62-
<include>**/UserPlugin/src/**</include>
63-
<include>*Plugin.java</include>
64-
</includes>
65-
</configuration>
66-
</plugin>
6752

53+
<plugins>
6854
<plugin>
6955
<groupId>org.apache.maven.plugins</groupId>
7056
<artifactId>maven-surefire-plugin</artifactId>
@@ -74,27 +60,6 @@ Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
7460
</systemPropertyVariables>
7561
</configuration>
7662
</plugin>
77-
78-
<plugin>
79-
<groupId>org.codehaus.mojo</groupId>
80-
<artifactId>build-helper-maven-plugin</artifactId>
81-
<version>1.8</version>
82-
<executions>
83-
<execution>
84-
<id>add-test-source</id>
85-
<phase>generate-test-sources</phase>
86-
<goals>
87-
<goal>add-test-source</goal>
88-
</goals>
89-
<configuration>
90-
<sources>
91-
<directory>UserPlugin/test</directory>
92-
</sources>
93-
</configuration>
94-
</execution>
95-
</executions>
96-
</plugin>
97-
9863
</plugins>
9964
</build>
10065

File renamed without changes.
File renamed without changes.

plugins/LdapPlugin/src/opengrok/auth/plugin/AbstractLdapPlugin.java renamed to plugins/src/opengrok/auth/plugin/AbstractLdapPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
* </ul>
4545
*
4646
* <p>
47-
* The intended methods to implement are the and {@link #checkEntity(HttpServletRequest, Project)
47+
* The intended methods to implement are the
48+
* {@link #checkEntity(HttpServletRequest, Project)} and
4849
* {@link #checkEntity(HttpServletRequest, Group)}.
4950
* </p>
5051
*
File renamed without changes.

plugins/HttpBasicAuthorizationPlugin.java renamed to plugins/src/opengrok/auth/plugin/HttpBasicAuthorizationPlugin.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@
1717
* CDDL HEADER END
1818
*/
1919

20-
/*
20+
/*
2121
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
2222
*/
23+
24+
package opengrok.auth.plugin;
25+
2326
import java.util.Arrays;
2427
import java.util.Map;
2528
import java.util.Set;
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)