You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2019/04/20 10:19:40 UTC

[directory-server] branch jenkinsfile2 updated (83c679b -> 52a7b88)

This is an automated email from the ASF dual-hosted git repository.

seelmann pushed a change to branch jenkinsfile2
in repository https://gitbox.apache.org/repos/asf/directory-server.git.


 discard 83c679b  Remove debug output
 discard a77d218  Debug build failure
 discard c4536a0  Fix installer build
 discard 8abc6de  Update installer tests to recent OS and Java versions
 discard b62f102  Revert "Bump mina version"
 discard 1353baf  Bump mina version
 discard 16f7ef8  Fix m2 repo mount. Remove workaround.
 discard 2f63e5a  Enable tests for Java 12 and configure surefire plugin. Configure timeouts per stage.
 discard 36da98a  Enable tests for Java 11
 discard 0054d90  Workaround for SUREFIRE-1588, skip tests and deploy
 discard e698e5c  Disable junit
 discard 4def851  Record surefire reports for debugging
 discard a1346c9  Replace Jenkinsfile
     new 3b763ef  Added the apacheds.ks KeyStore file in InstanceLayout
     new 8942572  Added a test for NIS
     new 08530ed  Bumped up a dependency
     new 40b5618  Merge branch 'master' of https://gitbox.apache.org/repos/asf/directory-server
     new 04bb407  o Swicthed to MINA 2.1.2 o Fixed the maven release plugin config so that the module's version is not asked for every module.
     new c6f064d  Changes to fix the certificate handling  in ApacheDS
     new 5abfc74  merge with Stefan's changes
     new d154889  Use Java 8
     new 78d65a8  Implemented RFC 4525 (Modify Increment operation)
     new a49b06f  Add missing OSGi import
     new e8cfe31  Replace Jenkinsfile
     new 82bda0f  Record surefire reports for debugging
     new 952b07c  Disable junit
     new cadc086  Workaround for SUREFIRE-1588, skip tests and deploy
     new 685a6fe  Enable tests for Java 11
     new 1ebb9eb  Enable tests for Java 12 and configure surefire plugin. Configure timeouts per stage.
     new 19f822c  Fix m2 repo mount. Remove workaround.
     new 05d5971  Update installer tests to recent OS and Java versions
     new 8de449e  Fix installer build
     new 217ecb3  Debug build failure
     new 52a7b88  Remove debug output

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (83c679b)
            \
             N -- N -- N   refs/heads/jenkinsfile2 (52a7b88)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 9636 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../server/core/annotations/CreateDS.java          |   6 +-
 .../directory/server/core/api/InstanceLayout.java  |  14 +
 .../server/core/operations/add/AddIT.java          |  26 ++
 .../core/operations/getRootDse/GetRootDseIT.java   |  50 ++-
 .../core/operations/search/SearchBinaryIT.java     |   2 +-
 .../shared/partition/DefaultPartitionNexus.java    |   4 +-
 .../server/core/DefaultDirectoryService.java       |   3 -
 .../server/core/security/CertificateUtil.java      | 347 +++++++++++++++++++++
 .../server/core/security/CoreKeyStoreSpi.java      |  31 +-
 .../server/core/security/CertificateUtilTest.java  |  57 ++++
 .../server/core/schema/SchemaInterceptor.java      |  43 +++
 .../shared/client/api/LdapSSLConnectionTest.java   |   6 +-
 ...sgiTest.java => ServerAnnotationsOsgiTest.java} |   8 +-
 .../osgi/integ/ServerCoreAnnotationsOsgiTest.java  |   2 +
 .../server/osgi/integ/ServerCoreOsgiTest.java      |   4 +-
 pom.xml                                            |  21 +-
 .../apache/directory/server/ldap/LdapServer.java   |  98 +-----
 server-annotations/pom.xml                         |   1 +
 .../server/factory/ServerAnnotationProcessor.java  |  16 +
 .../factory/DirectoryServiceAnnotationTest.java    |   2 +
 ...SocketFactory.java => AdsSSLSocketFactory.java} |  16 +-
 .../org/apache/directory/server/ssl/LdapsIT.java   |   2 +-
 .../server/ssl/LdapsUpdateCertificateIT.java       |  36 +--
 .../server/ssl/StartTlsConfidentialityIT.java      |  48 +--
 .../apache/directory/server/ssl/StartTlsIT.java    |  52 +--
 .../server/ssl/StartTlsUpdateCertificateIT.java    |  77 +----
 .../apache/directory/server/ApacheDsService.java   |  64 +++-
 .../apache/directory/server/UberJarMainTest.java   |  58 +++-
 .../server/core/integ/AbstractLdapTestUnit.java    |  44 +++
 .../server/core/integ/FrameworkRunner.java         |  30 --
 .../impl/btree/AbstractBTreePartition.java         | 162 ++++++++++
 31 files changed, 973 insertions(+), 357 deletions(-)
 create mode 100644 core/src/main/java/org/apache/directory/server/core/security/CertificateUtil.java
 create mode 100644 core/src/test/java/org/apache/directory/server/core/security/CertificateUtilTest.java
 copy osgi-integ/src/test/java/org/apache/directory/server/osgi/integ/{MinaOsgiTest.java => ServerAnnotationsOsgiTest.java} (81%)
 rename server-integ/src/test/java/org/apache/directory/server/ssl/{SSLSocketFactory.java => AdsSSLSocketFactory.java} (89%)