EMBJOPR SVN: r763 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-22 14:55:21 -0400 (Tue, 22 Sep 2009)
New Revision: 763
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson shell script: wget -m
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 18:50:48 UTC (rev 762)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 18:55:21 UTC (rev 763)
@@ -16,7 +16,7 @@
### Get and unzip EAP 5 binaries
#if [ -n $EAP_URL ] ; then
if [[ "$EAP_ZIP_PATH" = http:* ]] ; then
- wget -m --no-clobber -O eap5.zip $EAP_ZIP_PATH
+ wget -m -O eap5.zip $EAP_ZIP_PATH # --no-clobber
EAP_ZIP_PATH=eap5.zip
fi
rm -rf jboss-eap-5.0
15 years, 3 months
EMBJOPR SVN: r762 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-22 14:50:48 -0400 (Tue, 22 Sep 2009)
New Revision: 762
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson shell script: wget -m -nc
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 18:47:57 UTC (rev 761)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 18:50:48 UTC (rev 762)
@@ -16,7 +16,7 @@
### Get and unzip EAP 5 binaries
#if [ -n $EAP_URL ] ; then
if [[ "$EAP_ZIP_PATH" = http:* ]] ; then
- wget -N --no-clobber -O eap5.zip $EAP_ZIP_PATH
+ wget -m --no-clobber -O eap5.zip $EAP_ZIP_PATH
EAP_ZIP_PATH=eap5.zip
fi
rm -rf jboss-eap-5.0
15 years, 3 months
EMBJOPR SVN: r761 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-22 14:47:57 -0400 (Tue, 22 Sep 2009)
New Revision: 761
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson shell script updated - svn up pom.xml (root pom)
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 02:29:53 UTC (rev 760)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 18:47:57 UTC (rev 761)
@@ -16,7 +16,7 @@
### Get and unzip EAP 5 binaries
#if [ -n $EAP_URL ] ; then
if [[ "$EAP_ZIP_PATH" = http:* ]] ; then
- wget --no-clobber -O eap5.zip $EAP_ZIP_PATH
+ wget -N --no-clobber -O eap5.zip $EAP_ZIP_PATH
EAP_ZIP_PATH=eap5.zip
fi
rm -rf jboss-eap-5.0
@@ -52,6 +52,8 @@
# "Downdate" to older version
svn_rev_default="HEAD"
if [ -n "$SVN_REV" ]; then svn up -r $SVN_REV; fi
+ rm pom.xml
+ svn up pom.xml
## Dump settings - without explicitely set settings file
mvn -Pjboss5x help:effective-settings
15 years, 3 months
EMBJOPR SVN: r760 - trunk.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 22:29:53 -0400 (Mon, 21 Sep 2009)
New Revision: 760
Modified:
trunk/pom.xml
Log:
* POM - Removed <module>jsfunit</module> until we solve the "Cannot find parent: org.jboss.jopr:jopr-embedded-parent" problem.
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2009-09-22 02:13:38 UTC (rev 759)
+++ trunk/pom.xml 2009-09-22 02:29:53 UTC (rev 760)
@@ -125,7 +125,8 @@
<module>core</module>
<module>jbas4</module>
<module>jbas5</module>
- <module>jsfunit</module>
+ <!-- Removed until we solve the "Cannot find parent: org.jboss.jopr:jopr-embedded-parent" problem. -->
+ <!--<module>jsfunit</module> -->
</modules>
<repositories>
15 years, 3 months
EMBJOPR SVN: r759 - trunk/jsfunit.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 22:13:38 -0400 (Mon, 21 Sep 2009)
New Revision: 759
Modified:
trunk/jsfunit/pom.xml
Log:
* POM - added JBoss repositories to jsfunit pom
Modified: trunk/jsfunit/pom.xml
===================================================================
--- trunk/jsfunit/pom.xml 2009-09-22 00:24:06 UTC (rev 758)
+++ trunk/jsfunit/pom.xml 2009-09-22 02:13:38 UTC (rev 759)
@@ -28,6 +28,21 @@
<packaging>war</packaging>
<name>JSFUnit Tests for Embedded Admin Console</name>
+ <repositories>
+ <repository>
+ <id>jboss</id>
+ <name>JBoss Release Repository</name>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots><enabled>false</enabled></snapshots>
+ </repository>
+ <repository>
+ <id>jboss-snapshots</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>http://snapshots.jboss.org/maven2/</url>
+ <snapshots><enabled>true</enabled></snapshots>
+ </repository>
+ </repositories>
+
<pluginRepositories>
<pluginRepository>
<id>codehaus snapshot repository</id>
15 years, 3 months
EMBJOPR SVN: r758 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 20:24:06 -0400 (Mon, 21 Sep 2009)
New Revision: 758
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson script updated - debugging repositories settings
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 23:56:57 UTC (rev 757)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-22 00:24:06 UTC (rev 758)
@@ -42,7 +42,7 @@
fi
#M2_SETTINGS_PATH="${HOME}${SEP}settings.xml"
-if [ -e "$M2_SETTINGS_PATH" ] ; then echo "WARNING: $M2_SETTINGS_PATH not found."; fi
+if [ ! -e "$M2_SETTINGS_PATH" ] ; then echo "WARNING: $M2_SETTINGS_PATH not found."; fi
M2_SETTINGS="-s ${M2_SETTINGS_PATH}"
@@ -52,7 +52,14 @@
# "Downdate" to older version
svn_rev_default="HEAD"
if [ -n "$SVN_REV" ]; then svn up -r $SVN_REV; fi
+
+ ## Dump settings - without explicitely set settings file
+ mvn -Pjboss5x help:effective-settings
+ ## Dump settings - with explicitely set settings file
+ mvn $M2_SETTINGS -Pjboss5x help:effective-settings
+
mvn install -Dmaven.test.skip=true --update-snapshots
+
cd jsfunit
# But get the latest testcases.
svn up
15 years, 3 months
EMBJOPR SVN: r757 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 19:56:57 -0400 (Mon, 21 Sep 2009)
New Revision: 757
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson script updated - debugging repositories settings
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 23:32:17 UTC (rev 756)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 23:56:57 UTC (rev 757)
@@ -45,10 +45,6 @@
if [ -e "$M2_SETTINGS_PATH" ] ; then echo "WARNING: $M2_SETTINGS_PATH not found."; fi
M2_SETTINGS="-s ${M2_SETTINGS_PATH}"
-## Without explicitely set settings file
-mvn project-info-reports:dependency-management
-## With explicitely set settings file
-mvn $M2_SETTINGS project-info-reports:dependency-management
@@ -71,6 +67,12 @@
# patch -p0 < /home/hudson/ozizka/JoprEmbedded/pom-JmsAndDatasources.patch
#fi
+ ## Without explicitely set settings file
+ mvn -Pjboss5x help:effective-settings
+ ## With explicitely set settings file
+ mvn $M2_SETTINGS -Pjboss5x help:effective-settings
+
+
#mvn -Pjboss5x install -Dcargo.jboss.configuration=$JBOSS_CONFIG -Dhtmlunit.browser=$BROWSER --fail-never --update-snapshots -DJBOSS_HOME=$JBOSS_HOME -Dcargo.jboss.bind.address=$MYTESTIP_1
if [ -n "$NO_GC_LIMIT" ] ; then ADD_PROFILES=",no_GC_limit"; fi
15 years, 3 months
EMBJOPR SVN: r756 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 19:32:17 -0400 (Mon, 21 Sep 2009)
New Revision: 756
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson script updated - debugging repositories settings
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 23:09:56 UTC (rev 755)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 23:32:17 UTC (rev 756)
@@ -42,9 +42,16 @@
fi
#M2_SETTINGS_PATH="${HOME}${SEP}settings.xml"
+if [ -e "$M2_SETTINGS_PATH" ] ; then echo "WARNING: $M2_SETTINGS_PATH not found."; fi
M2_SETTINGS="-s ${M2_SETTINGS_PATH}"
+## Without explicitely set settings file
+mvn project-info-reports:dependency-management
+## With explicitely set settings file
+mvn $M2_SETTINGS project-info-reports:dependency-management
+
+
cd embjopr
# "Downdate" to older version
svn_rev_default="HEAD"
15 years, 3 months
EMBJOPR SVN: r755 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 19:09:56 -0400 (Mon, 21 Sep 2009)
New Revision: 755
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson script updated - M2_SETTINGS_PATH still needs to be set explicitely (until next restart).
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 22:42:01 UTC (rev 754)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 23:09:56 UTC (rev 755)
@@ -41,7 +41,7 @@
M2_SETTINGS_PATH="h:\\hudson\\.m2\\settings.xml"
fi
-M2_SETTINGS_PATH="${HOME}${SEP}settings.xml"
+#M2_SETTINGS_PATH="${HOME}${SEP}settings.xml"
M2_SETTINGS="-s ${M2_SETTINGS_PATH}"
15 years, 3 months
EMBJOPR SVN: r754 - trunk/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-09-21 18:42:01 -0400 (Mon, 21 Sep 2009)
New Revision: 754
Modified:
trunk/jsfunit/testdata/hudson_shell_script.sh
Log:
* hudson script updated
Modified: trunk/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 19:39:46 UTC (rev 753)
+++ trunk/jsfunit/testdata/hudson_shell_script.sh 2009-09-21 22:42:01 UTC (rev 754)
@@ -4,12 +4,12 @@
rm -rf embjopr/jsfunit/target
### Set path to maven 2.0.10
-M2_HOME="$(dirname `dirname $(which mvn)`)"
-if [ -z "$M2_HOME" ] ; then
- M2_HOME="/home/hudson/ozizka/sw/apache-maven-2.0.10"
-fi
-export M2_HOME
-export PATH=$M2_HOME"/bin:"$PATH
+#M2_HOME="$(dirname `dirname $(which mvn)`)"
+#if [ -z "$M2_HOME" ] ; then
+# M2_HOME="/home/hudson/ozizka/sw/apache-maven-2.0.10"
+#fi
+#export M2_HOME
+#export PATH=$M2_HOME"/bin:"$PATH
mvn -version
15 years, 3 months