Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.support.build/codeChecks/buildAll.xml')
-rw-r--r--plugins/org.eclipse.osee.support.build/codeChecks/buildAll.xml53
1 files changed, 0 insertions, 53 deletions
diff --git a/plugins/org.eclipse.osee.support.build/codeChecks/buildAll.xml b/plugins/org.eclipse.osee.support.build/codeChecks/buildAll.xml
deleted file mode 100644
index abfac56ae83..00000000000
--- a/plugins/org.eclipse.osee.support.build/codeChecks/buildAll.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<project name="build.all" default="run" basedir=".">
- <property name="helper-scripts" value="${basedir}/scripts" />
- <import file="${helper-scripts}/checkCodeQuality.xml" />
-
- <target name="run">
-
- <!-- load properties and set timestamp for the build -->
- <property file="build.properties" />
- <tstamp>
- <format property="buildTimestamp" pattern="yyyyMMddHHmm" />
- </tstamp>
-
- <!-- calculate workspaceDir as parent of this folder, the project's .releng folder (relengBuilderDir) -->
- <property name="relengBuilderDir" value="${basedir}" />
- <dirname file="${relengBuilderDir}" property="workspaceDir" />
-
- <echo message="workspaceDir=${workspaceDir}" />
-
- <property name="writableBuildRoot" value="${basedir}/${build-directory}" />
- <property name="buildDir" value="${writableBuildRoot}/${buildType}${buildTimestamp}" />
- <property name="oseeCodePreferences" value="${basedir}/org.eclipse.osee.support.config" />
-
- <!-- Set Proxy -->
- <antcall target="set-proxy" />
-
- <!-- this is here in case we are part of the eclipse common build -->
- <property name="relengCommonBuilderDir" value="${workspaceDir}/org.eclipse.dash.common.releng" />
- <property name="relengBaseBuilderDir" value="${workspaceDir}/org.eclipse.releng.basebuilder" />
- <!-- -->
-
- <property name="thirdPartyJarsDir" value="${writableBuildRoot}/3rdPartyJars" />
- <property name="downloadsDir" value="${writableBuildRoot}/downloads" />
-
- <!-- Download all required 3rd Party Jars if not found and thirdPartyDownloadLicenseAcceptanceOK="I accept" -->
- <get-code-quality-libraries />
-
- <pathconvert property="osee.bundles" setonempty="false" pathsep=";">
- <path>
- <dirset dir="${workspaceDir}/../" includes="*osee*" excludes=".osee.data,osee.doc,osee.install,osee.license,org.eclipse.osee.support.build,*releng,*.help,*runConfigs*,*.config,*.feature" />
- </path>
- </pathconvert>
-
- <set-code-quality-classpath classpath="${classpath}" />
-
- <all-code-quality-checks bundle.list="${osee.bundles}" />
- <create-html-index bundle.list="${osee.bundles}" output="${buildDir}/index.html" />
- </target>
-
- <target name="set-proxy">
- <echo message="Setting proxy to ${proxy_host}:${proxy_port}" />
- <setproxy proxyhost="${proxy_host}" proxyport="${proxy_port}" />
- </target>
-</project> \ No newline at end of file

Back to the top