Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop: (22 commits)
  fix casting
  fix strange compiler error
  Javadoc spelling error
  fix white space and indentation
  update libraries
  Fix NPE by applying the replacement only if a non-blank SQL string was returned.
  don’t forget to finish output streams, fixes wocommunity#843
  Declare a specific version of the hamcrest dependency in the pom.xml (issue wocommunity#841)
  Fix issue when running tests with Ant (issue wocommunity#841)
  Add collectors for NSCollection types
  Avoid Maven build failures because of Javadoc generation errors
  [maven-release-plugin] prepare for next development iteration
  [maven-release-plugin] prepare release wonder-7.0
  Add Travis-CI build status badge to GitHub front page
  Configure Travis deployment only if branches master
  Run verify Maven goal when building on Travis
  Include WebObjects lib on wotraskd and JavaMonitor
  Add configuration to run tests again
  Configure Travis-CI to build and deploy artifacts to WOCommunity Maven Repository
  Disable the ERModernMoviesTest module temporarily from the Maven build
  ...
  • Loading branch information
elemgee committed Dec 20, 2017
2 parents 56a8982 + 9dcc07e commit 44941da
Show file tree
Hide file tree
Showing 178 changed files with 713 additions and 282 deletions.
45 changes: 45 additions & 0 deletions .maven_settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>wocommunity</id>
<url>http://maven.wocommunity.org/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>wocommunity-plugins</id>
<url>http://maven.wocommunity.org/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>default</activeProfile>
</activeProfiles>
<servers>
<server>
<id>wocommunity.deployment</id>
<username>${env.CI_DEPLOY_USERNAME}</username>
<password>${env.CI_DEPLOY_PASSWORD}</password>
</server>
</servers>
</settings>
2 changes: 2 additions & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-Xmx2048m
-Xms512m
1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-T1C
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,21 @@ env:
# set NEXT_ROOT, so apps will start
- NEXT_ROOT=/home/travis/build

script: "mvn verify"
cache:
directories:
- $HOME/.m2

install: "mvn install -s .maven_settings.xml -DskipTests=true -Dmaven.javadoc.skip=true -B"

before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"

script: "mvn verify -s .maven_settings.xml -Dmaven.javadoc.skip=true -B"

deploy:
- provider: script
script: "mvn deploy -s .maven_settings.xml -DskipTests=true -B"
on:
branch: master
tags: false
2 changes: 1 addition & 1 deletion Applications/BugTracker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.applications</groupId>
<artifactId>applications</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.applications</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Applications/ERMailer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.applications</groupId>
<artifactId>applications</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.applications</groupId>
Expand Down
6 changes: 5 additions & 1 deletion Applications/JavaMonitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.applications</groupId>
<artifactId>applications</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand All @@ -11,6 +11,10 @@
<name>JavaMonitor Application</name>
<packaging>woapplication</packaging>

<properties>
<skip.apple.frameworks>false</skip.apple.frameworks>
</properties>

<dependencies>
<dependency>
<groupId>wonder.core</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Applications/Uber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.applications</groupId>
<artifactId>applications</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.applications</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Applications/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder</groupId>
<artifactId>wonder</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<groupId>wonder.applications</groupId>
<artifactId>applications</artifactId>
Expand Down
5 changes: 4 additions & 1 deletion Applications/wotaskd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
<parent>
<groupId>wonder.applications</groupId>
<artifactId>applications</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.applications</groupId>
<artifactId>wotaskd</artifactId>
<name>wotaskd</name>
<packaging>woapplication</packaging>
<properties>
<skip.apple.frameworks>false</skip.apple.frameworks>
</properties>
<dependencies>
<dependency>
<groupId>wonder.core</groupId>
Expand Down
256 changes: 127 additions & 129 deletions Build/build/build.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Build/build/generic.xml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ There are many ways to use this script:

<path id="wo.exec.test.path">
<pathelement location="${build.root}/ERJars.${fRJ}/junit.jar" />
<pathelement location="${build.root}/ERJars.${fRJ}/commons-lang3-3.5.jar" />
<pathelement location="${build.root}/ERJars.${fRJ}/commons-lang3-3.7.jar" />
<pathelement location="${build.root}/DerbyPlugIn.${fRJ}/derby.jar" />
<pathelement location="${build.root}/DerbyPlugIn.${fRJ}/DerbyPlugIn.jar" />
<pathelement location="${build.root}/DerbyPlugIn.${fRJ}/derbytools.jar" />
Expand Down Expand Up @@ -326,7 +326,7 @@ There are many ways to use this script:
<property file="${user.home}${file.separator}Library${file.separator}wobuild.properties"/>

<path id="wo.exec.test.path">
<pathelement location="${build.root}/ERJars.${fRJ}/commons-lang3-3.5.jar" />
<pathelement location="${build.root}/ERJars.${fRJ}/commons-lang3-3.7.jar" />
<pathelement location="${build.root}/ERExtensions.${fRJ}/ERExtensions.jar" />
<pathelement location="${build.root}/JavaMemoryAdaptor.${fRJ}/JavaMemoryAdaptor.jar" />
<pathelement location="${wo.system.frameworks}/JavaEOAccess.${fRJ}/javaeoaccess.jar" />
Expand Down
2 changes: 1 addition & 1 deletion Examples/Ajax/AjaxExample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>ajax</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.ajax</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Ajax/AjaxExample2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>ajax</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.ajax</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Ajax/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<artifactId>ajax</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion Examples/D2W/D2WComponentTour/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>d2w</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.d2w</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/D2W/ERModernMoviesDemo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>d2w</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/D2W/ERMovies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>d2w</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>wonder.d2w</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/D2W/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<artifactId>d2w</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERJaxWS/WebService_Created/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>erjaxws</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERJaxWS/WebService_Imported/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>erjaxws</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERJaxWS/WebService_Stateful/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>erjaxws</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERJaxWS/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<artifactId>erjaxws</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERXPartials/ERXPartialBaseModel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>erxpartials</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERXPartials/ERXPartialsExampleApp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>erxpartials</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERXPartials/ERXPartialsExampleModel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>erxpartials</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/ERXPartials/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<artifactId>erxpartials</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Misc/ERComponentTour/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>miscexamples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<groupId>wonder.misc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Misc/ERIndexingExample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>miscexamples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<groupId>wonder.misc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Misc/ERRestRouteExample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>miscexamples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<groupId>wonder.misc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Misc/ERSeleniumExample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>miscexamples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<groupId>wonder.misc</groupId>
<artifactId>ERSeleniumExample</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions Examples/Misc/Movies/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,11 @@
<classpathentry kind="con" path="WOFramework/ERMoviesLogic"/>
<classpathentry kind="con" path="WOFramework/ERRest"/>
<classpathentry kind="con" path="WOFramework/H2PlugIn"/>
<classpathentry kind="con" path="WOFramework/ERCoreBusinessLogic"/>
<classpathentry kind="con" path="WOFramework/ERDirectToWeb"/>
<classpathentry kind="con" path="WOFramework/ERJavaMail"/>
<classpathentry kind="con" path="WOFramework/JavaDirectToWeb"/>
<classpathentry kind="con" path="WOFramework/JavaEOProject"/>
<classpathentry kind="con" path="WOFramework/JavaDTWGeneration"/>
<classpathentry kind="output" path="bin"/>
</classpath>
2 changes: 1 addition & 1 deletion Examples/Misc/TickTockMan/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>miscexamples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Misc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>

<artifactId>miscexamples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Examples/Reporting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<artifactId>reporting</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion Examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>wonder</groupId>
<artifactId>wonder</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<groupId>wonder.examples</groupId>
<artifactId>examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Frameworks/Ajax/Ajax/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>wonder.frameworks</groupId>
<artifactId>ajax</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.1-SNAPSHOT</version>
</parent>
<groupId>wonder.ajax</groupId>
<artifactId>Ajax</artifactId>
Expand Down
Loading

0 comments on commit 44941da

Please sign in to comment.