JBoss Tools SVN: r23477 - workspace/dgolovin/build/bootstrap/jmx.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-07-15 21:01:38 -0400 (Thu, 15 Jul 2010)
New Revision: 23477
Modified:
workspace/dgolovin/build/bootstrap/jmx/pom.xml
Log:
Modified: workspace/dgolovin/build/bootstrap/jmx/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 01:00:53 UTC (rev 23476)
+++ workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 01:01:38 UTC (rev 23477)
@@ -23,11 +23,12 @@
<checkoutDirectory>${parentCheckoutDir}/${project.artifactId}</checkoutDirectory>
<goals>install</goals>
<profiles>helios-no-target</profiles>
+ <skipCheckoutIfExists>true</skipCheckoutIfExists>
</configuration>
<executions>
<execution>
<id>suite2</id>
- <phase>install</phase>
+ <phase>generate-sources</phase>
<goals>
<goal>bootstrap</goal>
</goals>
15 years, 9 months
JBoss Tools SVN: r23476 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-15 21:00:53 -0400 (Thu, 15 Jul 2010)
New Revision: 23476
Modified:
trunk/build/results/build.xml
Log:
typo
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2010-07-16 00:41:24 UTC (rev 23475)
+++ trunk/build/results/build.xml 2010-07-16 01:00:53 UTC (rev 23476)
@@ -14,7 +14,7 @@
<!-- <condition property="WORKINGDIR" value="/home/hudson/static_build_env/jbds/tools/sources" else="${basedir}/../..">
<available file="/home/hudson/static_build_env/jbds" type="dir" />
</condition> -->
- <condition property="WORKINGDIR" value="${WORKSPACE}/sources" else"${basedir}/../..">
+ <condition property="WORKINGDIR" value="${WORKSPACE}/sources" else="${basedir}/../..">
<available file="${WORKSPACE}/sources" type="dir" />
</condition>
15 years, 9 months
JBoss Tools SVN: r23475 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-15 20:41:24 -0400 (Thu, 15 Jul 2010)
New Revision: 23475
Modified:
trunk/build/publish.sh
Log:
make results snippet gen more verbose
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-07-16 00:41:22 UTC (rev 23474)
+++ trunk/build/publish.sh 2010-07-16 00:41:24 UTC (rev 23475)
@@ -101,7 +101,7 @@
# generate HTML snippet, download-snippet.txt, for inclusion on jboss.org
if [[ ${RELEASE} == "Yes" ]]; then
mkdir -p ${STAGINGDIR}/logs
- ANT_PARAMS="-DZIPSUFFIX=${ZIPSUFFIX} -DJOB_NAME=${JOB_NAME} -Doutput.dir=${STAGINGDIR}/logs"
+ ANT_PARAMS="-v -DZIPSUFFIX=${ZIPSUFFIX} -DJOB_NAME=${JOB_NAME} -Doutput.dir=${STAGINGDIR}/logs"
if [[ -f ${WORKSPACE}/build/results/build.xml ]]; then
ant -f ${WORKSPACE}/build/results/build.xml ${ANT_PARAMS}
elif [[ -f ${WORKSPACE}/sources/build/results/build.xml ]]; then
15 years, 9 months
JBoss Tools SVN: r23474 - in workspace/dgolovin: jmx and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-07-15 20:41:22 -0400 (Thu, 15 Jul 2010)
New Revision: 23474
Modified:
workspace/dgolovin/build/bootstrap/jmx/pom.xml
workspace/dgolovin/jmx/pom.xml
Log:
test for bootstrapping with inheritance
Modified: workspace/dgolovin/build/bootstrap/jmx/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 00:39:48 UTC (rev 23473)
+++ workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 00:41:22 UTC (rev 23474)
@@ -10,6 +10,9 @@
<developerConnection>scm:svn:https://svn.jboss.org/repos/jbosstools/workspace/dgolovin/jmx</developerConnection>
<url>https://anonsvn.jboss.org/repos/jbosstools/workspace/dgolovin/jmx</url>
</scm>
+ <properties>
+ <parentCheckoutDir>${basedir}/../../..</parentCheckoutDir>
+ </properties>
<build>
<plugins>
<plugin>
@@ -17,7 +20,7 @@
<artifactId>maven-scm-plugin</artifactId>
<version>1.3</version>
<configuration>
- <checkoutDirectory>${basedir}/../../../jmx</checkoutDirectory>
+ <checkoutDirectory>${parentCheckoutDir}/${project.artifactId}</checkoutDirectory>
<goals>install</goals>
<profiles>helios-no-target</profiles>
</configuration>
Modified: workspace/dgolovin/jmx/pom.xml
===================================================================
--- workspace/dgolovin/jmx/pom.xml 2010-07-16 00:39:48 UTC (rev 23473)
+++ workspace/dgolovin/jmx/pom.xml 2010-07-16 00:41:22 UTC (rev 23474)
@@ -5,6 +5,15 @@
<artifactId>jmx</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>jmx.all</name>
+ <parent>
+ <relativePath>../build/bootstrap/jmx/pom.xml</relativePath>
+ <groupId>org.jboss.build.component</groupId>
+ <artifactId>jmx</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <properties>
+ <parentCheckoutDir>..</parentCheckoutDir>
+ </properties>
<packaging>pom</packaging>
<modules>
<module>features</module>
15 years, 9 months
JBoss Tools SVN: r23473 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-15 20:39:48 -0400 (Thu, 15 Jul 2010)
New Revision: 23473
Modified:
trunk/build/results/build.xml
Log:
use different base path default when searching for components
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2010-07-16 00:34:37 UTC (rev 23472)
+++ trunk/build/results/build.xml 2010-07-16 00:39:48 UTC (rev 23473)
@@ -11,8 +11,11 @@
<available file="${WORKSPACE}/results" />
</condition>
- <condition property="WORKINGDIR" value="/home/hudson/static_build_env/jbds/tools/sources" else="${basedir}/../..">
+ <!-- <condition property="WORKINGDIR" value="/home/hudson/static_build_env/jbds/tools/sources" else="${basedir}/../..">
<available file="/home/hudson/static_build_env/jbds" type="dir" />
+ </condition> -->
+ <condition property="WORKINGDIR" value="${WORKSPACE}/sources" else"${basedir}/../..">
+ <available file="${WORKSPACE}/sources" type="dir" />
</condition>
<mkdir dir="${WORKINGDIR}" />
15 years, 9 months
JBoss Tools SVN: r23472 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-15 20:34:37 -0400 (Thu, 15 Jul 2010)
New Revision: 23472
Modified:
trunk/build/publish.sh
Log:
add more meta
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-07-16 00:30:03 UTC (rev 23471)
+++ trunk/build/publish.sh 2010-07-16 00:34:37 UTC (rev 23472)
@@ -48,11 +48,15 @@
METAFILE="${BUILD_ID}-H${BUILD_NUMBER}.txt"
if [[ ${SVN_REVISION} ]]; then
METAFILE="${BUILD_ID}-H${BUILD_NUMBER}-r${SVN_REVISION}.txt"
+ echo "SVN_REVISION = ${SVN_REVISION}" > ${STAGINGDIR}/logs/${METAFILE}
+ else
+ echo -n "" > ${STAGINGDIR}/logs/${METAFILE}
fi
- echo "SVN_REVISION = ${SVN_REVISION}" > ${STAGINGDIR}/logs/${METAFILE}
echo "JOB_NAME = ${JOB_NAME}" >> ${STAGINGDIR}/logs/${METAFILE}
echo "BUILD_NUMBER = ${BUILD_NUMBER}" >> ${STAGINGDIR}/logs/${METAFILE}
echo "BUILD_ID = ${BUILD_ID}" >> ${STAGINGDIR}/logs/${METAFILE}
+ echo "WORKSPACE = ${WORKSPACE}" >> ${STAGINGDIR}/logs/${METAFILE}
+ echo "HUDSON_SLAVE = $(uname -a)" >> ${STAGINGDIR}/logs/${METAFILE}
# unzip into workspace for publishing as unpacked site
mkdir -p ${STAGINGDIR}/all/repo
15 years, 9 months
JBoss Tools SVN: r23471 - in workspace/dgolovin/build/bootstrap: tests and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-07-15 20:30:03 -0400 (Thu, 15 Jul 2010)
New Revision: 23471
Modified:
workspace/dgolovin/build/bootstrap/jmx/pom.xml
workspace/dgolovin/build/bootstrap/tests/pom.xml
Log:
update path to root dir
Modified: workspace/dgolovin/build/bootstrap/jmx/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 00:26:02 UTC (rev 23470)
+++ workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 00:30:03 UTC (rev 23471)
@@ -17,7 +17,7 @@
<artifactId>maven-scm-plugin</artifactId>
<version>1.3</version>
<configuration>
- <checkoutDirectory>${basedir}/../../jmx</checkoutDirectory>
+ <checkoutDirectory>${basedir}/../../../jmx</checkoutDirectory>
<goals>install</goals>
<profiles>helios-no-target</profiles>
</configuration>
Modified: workspace/dgolovin/build/bootstrap/tests/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/tests/pom.xml 2010-07-16 00:26:02 UTC (rev 23470)
+++ workspace/dgolovin/build/bootstrap/tests/pom.xml 2010-07-16 00:30:03 UTC (rev 23471)
@@ -17,7 +17,7 @@
<artifactId>maven-scm-plugin</artifactId>
<version>1.3</version>
<configuration>
- <checkoutDirectory>${basedir}/../../tests</checkoutDirectory>
+ <checkoutDirectory>${basedir}/../../../tests</checkoutDirectory>
<goals>install</goals>
<profiles>helios-no-target</profiles>
</configuration>
15 years, 9 months
JBoss Tools SVN: r23468 - in workspace/dgolovin/build: bootstrap and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-07-15 20:23:49 -0400 (Thu, 15 Jul 2010)
New Revision: 23468
Added:
workspace/dgolovin/build/bootstrap/
workspace/dgolovin/build/bootstrap/jmx/
workspace/dgolovin/build/bootstrap/jmx/pom.xml
workspace/dgolovin/build/bootstrap/pom.xml
workspace/dgolovin/build/bootstrap/tests/
workspace/dgolovin/build/bootstrap/tests/pom.xml
Log:
bootstarpping added
Added: workspace/dgolovin/build/bootstrap/jmx/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/jmx/pom.xml (rev 0)
+++ workspace/dgolovin/build/bootstrap/jmx/pom.xml 2010-07-16 00:23:49 UTC (rev 23468)
@@ -0,0 +1,36 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.build.component</groupId>
+ <artifactId>jmx</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <scm>
+ <connection>scm:svn:https://anonsvn.jboss.org/repos/jbosstools/workspace/dgolovin/jmx</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbosstools/workspace/dgolovin/jmx</developerConnection>
+ <url>https://anonsvn.jboss.org/repos/jbosstools/workspace/dgolovin/jmx</url>
+ </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <version>1.3</version>
+ <configuration>
+ <checkoutDirectory>${basedir}/../../jmx</checkoutDirectory>
+ <goals>install</goals>
+ <profiles>helios-no-target</profiles>
+ </configuration>
+ <executions>
+ <execution>
+ <id>suite2</id>
+ <phase>install</phase>
+ <goals>
+ <goal>bootstrap</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Property changes on: workspace/dgolovin/build/bootstrap/jmx/pom.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: workspace/dgolovin/build/bootstrap/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/pom.xml (rev 0)
+++ workspace/dgolovin/build/bootstrap/pom.xml 2010-07-16 00:23:49 UTC (rev 23468)
@@ -0,0 +1,31 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.build.bootstrap</groupId>
+ <artifactId>bootstrap-build</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <profiles>
+
+ <profile>
+ <id>tests</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>tests</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>jmx</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>jmx</module>
+ </modules>
+ </profile>
+
+ </profiles>
+</project>
\ No newline at end of file
Property changes on: workspace/dgolovin/build/bootstrap/pom.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: workspace/dgolovin/build/bootstrap/tests/pom.xml
===================================================================
--- workspace/dgolovin/build/bootstrap/tests/pom.xml (rev 0)
+++ workspace/dgolovin/build/bootstrap/tests/pom.xml 2010-07-16 00:23:49 UTC (rev 23468)
@@ -0,0 +1,36 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.build.component</groupId>
+ <artifactId>tests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <scm>
+ <connection>scm:svn:https://anonsvn.jboss.org/repos/jbosstools/workspace/dgolovin/tests</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbosstools/workspace/dgolovin/tests</developerConnection>
+ <url>https://anonsvn.jboss.org/repos/jbosstools/workspace/dgolovin/tests</url>
+ </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <version>1.3</version>
+ <configuration>
+ <checkoutDirectory>${basedir}/../../tests</checkoutDirectory>
+ <goals>install</goals>
+ <profiles>helios-no-target</profiles>
+ </configuration>
+ <executions>
+ <execution>
+ <id>suite2</id>
+ <phase>install</phase>
+ <goals>
+ <goal>bootstrap</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Property changes on: workspace/dgolovin/build/bootstrap/tests/pom.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
15 years, 9 months