]> source.dussan.org Git - jgit.git/commitdiff
Merge branch 'stable-4.11' into stable-5.0 99/130499/4
authorMatthias Sohn <matthias.sohn@sap.com>
Sat, 6 Oct 2018 12:44:12 +0000 (14:44 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Sat, 6 Oct 2018 14:40:46 +0000 (16:40 +0200)
* stable-4.11:
  Prepare 4.11.5-SNAPSHOT builds
  JGit v4.11.4.201810060650-r
  Fix configuration of maven-javadoc-plugin
  Prepare 4.9.7-SNAPSHOT builds
  JGit v4.9.6.201810051924-r
  Prepare 4.7.6-SNAPSHOT builds
  JGit v4.7.5.201810051826-r
  BaseReceivePack: Validate incoming .gitmodules files
  ObjectChecker: Report .gitmodules files found in the pack
  SubmoduleAddCommand: Reject submodule URIs that look like cli options

* Fix configuration of maven-javadoc-plugin for site generation

Change-Id: Ic6ff8d324867ee41f15a5b890c7eee5092e8453e
Signed-off-by: Jonathan Nieder <jrn@google.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
1  2 
org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/ObjectCheckerTest.java
org.eclipse.jgit.test/tst/org/eclipse/jgit/submodule/SubmoduleAddTest.java
org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ReceivePackAdvertiseRefsHookTest.java
org.eclipse.jgit/.settings/.api_filters
org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties
org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleAddCommand.java
org.eclipse.jgit/src/org/eclipse/jgit/internal/JGitText.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java
pom.xml

index e7ea220dcaf452f334488368a36090ba3d044bd3,eb2ed7dabbd95a62776f15c38c45cb70f5dc8a9e..089510ac51542fde4d173ee90cf2038551c8e7bf
@@@ -3,14 -3,33 +3,24 @@@
      <resource path="META-INF/MANIFEST.MF">
          <filter id="924844039">
              <message_arguments>
-                 <message_argument value="5.0.3"/>
 -                <message_argument value="4.11.2"/>
 -                <message_argument value="4.11.0"/>
 -            </message_arguments>
 -        </filter>
 -    </resource>
 -    <resource path="src/org/eclipse/jgit/lib/Constants.java" type="org.eclipse.jgit.lib.Constants">
 -        <filter id="1141899266">
 -            <message_arguments>
 -                <message_argument value="4.7"/>
 -                <message_argument value="4.11"/>
 -                <message_argument value="LOCK_SUFFIX"/>
++                <message_argument value="5.0.4"/>
 +                <message_argument value="5.0.0"/>
              </message_arguments>
          </filter>
-         <filter id="924844039">
+     </resource>
+     <resource path="src/org/eclipse/jgit/lib/GitmoduleEntry.java" type="org.eclipse.jgit.lib.GitmoduleEntry">
+         <filter id="1109393411">
              <message_arguments>
-                 <message_argument value="5.0.4"/>
-                 <message_argument value="5.0.0"/>
+                 <message_argument value="4.7.5"/>
+                 <message_argument value="org.eclipse.jgit.lib.GitmoduleEntry"/>
+             </message_arguments>
+         </filter>
+     </resource>
+     <resource path="src/org/eclipse/jgit/lib/ObjectChecker.java" type="org.eclipse.jgit.lib.ObjectChecker">
+         <filter id="1142947843">
+             <message_arguments>
+                 <message_argument value="4.7.5"/>
+                 <message_argument value="getGitsubmodules()"/>
              </message_arguments>
          </filter>
      </resource>
index c8b24f559fda71299bff55f0a32ad106bb25a078,4a933d42f858d5b831dd4f99ca2958316a262aca..bbea8a3d245ed188bcfd76f20fc3d533d3cf16be
@@@ -365,8 -362,8 +365,9 @@@ invalidCommitParentNumber=Invalid commi
  invalidDepth=Invalid depth: {0}
  invalidEncryption=Invalid encryption
  invalidExpandWildcard=ExpandFromSource on a refspec that can have mismatched wildcards does not make sense.
 +invalidFilter=Invalid filter: {0}
  invalidGitdirRef = Invalid .git reference in file ''{0}''
+ invalidGitModules=Invalid .gitmodules file
  invalidGitType=invalid git type: {0}
  invalidId=Invalid id: {0}
  invalidId0=Invalid id
index 94b4e03bc5abae922d42e75759d9fc759f102658,5af25aa28f57d631e0ad89d750c29e4330559f4c..18f4c85d88ff56f98fdbd2129040ae2a828c1539
@@@ -426,8 -423,8 +426,9 @@@ public class JGitText extends Translati
        /***/ public String invalidDepth;
        /***/ public String invalidEncryption;
        /***/ public String invalidExpandWildcard;
 +      /***/ public String invalidFilter;
        /***/ public String invalidGitdirRef;
+       /***/ public String invalidGitModules;
        /***/ public String invalidGitType;
        /***/ public String invalidId;
        /***/ public String invalidId0;
diff --cc pom.xml
index 25c923d3739283625ce4fb5b2454c1c5e4ebe238,72bab00364020c5baf4e5fedccbe0ac5076d84ff..334784796e66d7c62e732ed05a0b38ec168bcd00
+++ b/pom.xml
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>${maven-javadoc-plugin-version}</version>
-           <additionalparam>-Xdoclint:none</additionalparam>
 +        <reportSets>
 +          <reportSet>
 +            <reports>
 +              <report>javadoc</report>
 +            </reports>
 +          </reportSet>
 +          <reportSet>
 +            <id>aggregate</id>
 +            <inherited>false</inherited>
 +            <reports>
 +              <report>aggregate</report>
 +            </reports>
 +          </reportSet>
 +        </reportSets>
 +        <configuration>
++          <additionalJOption>-Xdoclint:-missing</additionalJOption>
 +        </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>