You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by pa...@apache.org on 2015/07/18 12:49:06 UTC

[1/3] zest-qi4j git commit: Build: sign src & bin distributions

Repository: zest-qi4j
Updated Branches:
  refs/heads/develop a0c74a7ba -> c9d57889a


Build: sign src & bin distributions

They were not signed anymore since some Gradle update although all
JARs were. `signing { sign someConfiguration }` must now be stated after
the configuration is complete. That was not the case for the root
project hence the distributions now being signed … This commit fix this.


Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/e821bd20
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/e821bd20
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/e821bd20

Branch: refs/heads/develop
Commit: e821bd205c7a8ea3efa9818faed7662b3d9e8d59
Parents: a0c74a7
Author: Paul Merlin <pa...@apache.org>
Authored: Fri Jul 17 20:19:57 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
Committed: Fri Jul 17 20:19:57 2015 +0200

----------------------------------------------------------------------
 build.gradle | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/e821bd20/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index d541318..69fe140 100644
--- a/build.gradle
+++ b/build.gradle
@@ -829,6 +829,10 @@ artifacts {
   archives zipSources, tarSources, zipBinaries, tarBinaries
 }
 
+signing {
+  sign configurations.archives
+}
+
 task dist( type: Copy, dependsOn: install ) {
   with binDistImage
   into "$buildDir/dist"


[2/3] zest-qi4j git commit: Documentation: better build-system tutorial

Posted by pa...@apache.org.
Documentation: better build-system tutorial


Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/982ea0fa
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/982ea0fa
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/982ea0fa

Branch: refs/heads/develop
Commit: 982ea0faec6e2225fe40086bb1cdf5a5e23b0214
Parents: e821bd2
Author: Paul Merlin <pa...@apache.org>
Authored: Sat Jul 18 12:03:57 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
Committed: Sat Jul 18 12:03:57 2015 +0200

----------------------------------------------------------------------
 .../src/docs/tutorials/howto-build-system.txt   | 48 ++++++++------------
 1 file changed, 20 insertions(+), 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/982ea0fa/manual/src/docs/tutorials/howto-build-system.txt
----------------------------------------------------------------------
diff --git a/manual/src/docs/tutorials/howto-build-system.txt b/manual/src/docs/tutorials/howto-build-system.txt
index 6730a38..2fa78b5 100644
--- a/manual/src/docs/tutorials/howto-build-system.txt
+++ b/manual/src/docs/tutorials/howto-build-system.txt
@@ -18,7 +18,7 @@
 ///////////////////////////////////////////////////////////////
 
 [[build-system,Build System]]
-= Build System =
+= Zest™ Build System =
 
 This tutorial is intended for developpers who want to build the Zest™ SDK themselves.
 It describe the Zest™ SDK Build System from compilation to publication of artifacts for consumption by other
@@ -131,40 +131,18 @@ If a +version+ property is not defined, the build system will refuse to make a r
 
 == Tests ==
 
-NOTE: See the https://builds.apache.org/view/S-Z/view/Zest/[Zest™ Continuous Integration] for current tests results
-
-// TODO
-
-=== Regression tests ===
-
-They are not part of the default build.
-
-// TODO
-
-
-=== Performance tests ===
-
-Performance tests provide performance mesurements for typical Zest™ use cases.
-They are not part of the default build.
-
-// TODO
-
-
-=== Complex tests ===
-
-Complex tests are the ones that requires manual operation to be executed.
-They are not part of the default build.
-
-// TODO
+Unit and integration tests are located near the code under test.
+You'll find theses tests across the whole SDK.
 
+NOTE: See the https://builds.apache.org/view/S-Z/view/Zest/[Zest™ Continuous Integration] for current tests results
 
 === Unit tests requiring external services ===
 
-NOTE: The HTML test reports generated by Gradle show skipped tests.
-
 Among unit tests, some require an external service to be run.
 For example, the MongoDB EntityStore extension requires an actual MongoDB server to run its tests.
 
+NOTE: The HTML test reports generated by Gradle show skipped tests.
+
 All thoses tests should be part of the default build and check if the service is available at its default location
 on +localhost+ and skip if not.
 This is easily achieved using http://junit.sourceforge.net/javadoc/org/junit/Assume.html[JUnit assumptions].
@@ -178,6 +156,20 @@ We'll list here services that the unit tests will use if available.
 - PostgreSQL for +extensions/entitystore-sql+ and +extensions/indexing-sql+ (need setup, see test source)
 - MySQL for +extensions/entitystore-sql+ (need setup, see test source)
 
+=== Performance tests ===
+
+Performance tests provide performance mesurements for typical Zest™ use cases.
+They are not part of the default build and are located in the `tests/performance` directory of the SDK.
+
+They can be run with the following Gradle command:
+
+[source,bash]
+-----------
+./gradlew :org.qi4j.tests:org.qi4j.test.performance:testPerf
+-----------
+
+Results will then be available in the test reports.
+
 
 == Releasing the Zest™ SDK ==
 


[3/3] zest-qi4j git commit: Build: remove java.net maven repository as it is now down

Posted by pa...@apache.org.
Build: remove java.net maven repository as it is now down


Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/c9d57889
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/c9d57889
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/c9d57889

Branch: refs/heads/develop
Commit: c9d57889a91a738b5ef463464af040d103da5ca1
Parents: 982ea0f
Author: Paul Merlin <pa...@apache.org>
Authored: Sat Jul 18 12:45:26 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
Committed: Sat Jul 18 12:45:26 2015 +0200

----------------------------------------------------------------------
 build.gradle | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/c9d57889/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 69fe140..347bc60 100644
--- a/build.gradle
+++ b/build.gradle
@@ -113,7 +113,6 @@ def repos_urls = [
   mavenCentral: "http://repo1.maven.org/maven2/",
   ops4j: "http://repository.ops4j.org/maven2/",
   restlet: 'http://maven.restlet.org/',
-  javanet: "http://download.java.net/maven/2",
   clojars: "http://clojars.org/repo/",
 ]
 
@@ -159,7 +158,6 @@ allprojects {
     mavenCentral()
     maven { name 'ops4j-repo'; url repos_urls.ops4j }
     maven { name 'restlet-repo'; url repos_urls.restlet }
-    maven { name 'maven2-repository.dev.java.net'; url repos_urls.javanet }
     maven { name 'clojars-repo'; url repos_urls.clojars }
   }