You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by jt...@apache.org on 2017/10/09 09:42:48 UTC

[1/4] incubator-netbeans git commit: Enabling Travis build

Repository: incubator-netbeans
Updated Branches:
  refs/heads/master 5e6679a09 -> 9e14a5d44


Enabling Travis build


Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/commit/b9dc77fc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/tree/b9dc77fc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/diff/b9dc77fc

Branch: refs/heads/master
Commit: b9dc77fcae258f0392da9d5f103f2991c2bb2fbc
Parents: a5e6174
Author: Jaroslav Tulach <ja...@oracle.com>
Authored: Tue Sep 26 13:27:59 2017 +0200
Committer: Jaroslav Tulach <ja...@oracle.com>
Committed: Tue Sep 26 13:27:59 2017 +0200

----------------------------------------------------------------------
 .travis.yml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-netbeans/blob/b9dc77fc/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..5ac36b6
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,7 @@
+language: java
+install: ant deps
+jdk:
+  - oraclejdk8
+script:
+  - ant build
+


[2/4] incubator-netbeans git commit: Ant is installed by default in Java projects

Posted by jt...@apache.org.
Ant is installed by default in Java projects


Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/commit/de23b542
Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/tree/de23b542
Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/diff/de23b542

Branch: refs/heads/master
Commit: de23b5429f54e4642989a068ae8b36635fe3f079
Parents: b9dc77f 1165663
Author: Jaroslav Tulach <ja...@oracle.com>
Authored: Mon Oct 9 10:44:12 2017 +0200
Committer: Jaroslav Tulach <ja...@oracle.com>
Committed: Mon Oct 9 10:46:49 2017 +0200

----------------------------------------------------------------------
 .travis.yml                                     |   1 -
 DISCLAIMER                                      |   8 +
 db/apichanges.xml                               |  61 ++--
 db/external/binaries-list                       |  20 +-
 db/external/derby-10.2.2.0-notice.txt           | 298 +++++++++++++++++++
 .../db/explorer/action/Bundle.properties        |  54 +---
 .../db/explorer/action/CreateViewAction.java    |  53 +---
 .../modules/db/explorer/node/TableNode.java     |  53 +---
 .../modules/db/explorer/bar-connection.xml      |  20 ++
 .../modules/db/explorer/driver/bar-driver.xml   |  20 ++
 .../modules/db/explorer/null-pwd-connection.xml |  20 ++
 .../upgrade/org.openide.util.Lookup.test        |  18 ++
 .../unit/src/META-INF/upgrade/NbBundle.test     |  18 ++
 .../src/org/openide/util/UtilitiesTranslate.txt |  17 ++
 .../openide/util/UtilitiesTranslate29878.txt    |  57 ++--
 .../org/openide/util/UtilitiesTranslateOrig.txt |  17 ++
 .../openide/util/UtilitiesTranslateTest.java    |   5 +
 .../test/unit/src/org/openide/xml/random.dtd    |  20 ++
 18 files changed, 559 insertions(+), 201 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-netbeans/blob/de23b542/.travis.yml
----------------------------------------------------------------------
diff --cc .travis.yml
index 5ac36b6,0000000..55db165
mode 100644,000000..100644
--- a/.travis.yml
+++ b/.travis.yml
@@@ -1,7 -1,0 +1,6 @@@
 +language: java
- install: ant deps
 +jdk:
 +  - oraclejdk8
 +script:
 +  - ant build
 +


[3/4] incubator-netbeans git commit: Run ant in quiet mode and suppress warnings and deprecations to shorten the compilation log

Posted by jt...@apache.org.
Run ant in quiet mode and suppress warnings and deprecations to shorten the compilation log


Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/commit/e612e631
Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/tree/e612e631
Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/diff/e612e631

Branch: refs/heads/master
Commit: e612e631067048be20cbaaeedb642614724c48cf
Parents: de23b54
Author: Jaroslav Tulach <ja...@oracle.com>
Authored: Mon Oct 9 11:01:31 2017 +0200
Committer: Jaroslav Tulach <ja...@oracle.com>
Committed: Mon Oct 9 11:20:51 2017 +0200

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-netbeans/blob/e612e631/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 55db165..5bda6a9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,5 +2,6 @@ language: java
 jdk:
   - oraclejdk8
 script:
-  - ant build
+  - ant -quiet build -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false
+
 


[4/4] incubator-netbeans git commit: Enabling basic Travis integration to verify our code builds.

Posted by jt...@apache.org.
Enabling basic Travis integration to verify our code builds.


Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/commit/9e14a5d4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/tree/9e14a5d4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/diff/9e14a5d4

Branch: refs/heads/master
Commit: 9e14a5d44daf62feb0dccc1393b96293fc34c343
Parents: 5e6679a e612e63
Author: Jaroslav Tulach <ja...@oracle.com>
Authored: Mon Oct 9 11:42:12 2017 +0200
Committer: Jaroslav Tulach <ja...@oracle.com>
Committed: Mon Oct 9 11:42:12 2017 +0200

----------------------------------------------------------------------
 .travis.yml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------