-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daron Brison
committed
Apr 20, 2020
1 parent
9b1048d
commit 019982e
Showing
10 changed files
with
309 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<project name="FlintPluginDistribution" default="build"> | ||
<!-- Generated by MPS --> | ||
<property name="build.dir" location="build" /> | ||
<property name="build.tmp" location="${build.dir}/tmp/FlintPluginDistribution" /> | ||
<property name="build.layout" location="${build.dir}/artifacts/FlintPluginDistribution" /> | ||
<property name="mps_home" location="" /> | ||
<property name="version" value="1.0" /> | ||
<property name="artifacts.Flint" location="${build.dir}/artifacts/Flint" /> | ||
<property file="${artifacts.Flint}/build.properties" prefix="import.Flint" /> | ||
<property name="Flint.date" value="${import.Flint.Flint.date}" /> | ||
<property name="Flint.build.number" value="${import.Flint.Flint.build.number}" /> | ||
<property name="mpsBootstrapCore.version" value="${import.Flint.mpsBootstrapCore.version}" /> | ||
<property name="com.mbeddr.platform.major.version" value="${import.Flint.com.mbeddr.platform.major.version}" /> | ||
<property name="com.mbeddr.platform.minor.version" value="${import.Flint.com.mbeddr.platform.minor.version}" /> | ||
<property name="com.mbeddr.platform.build" value="${import.Flint.com.mbeddr.platform.build}" /> | ||
<property name="com.mbeddr.platform.mbeddr.version" value="${import.Flint.com.mbeddr.platform.mbeddr.version}" /> | ||
<property name="mps.build.number" value="${import.Flint.mps.build.number}" /> | ||
<property name="mps.date" value="${import.Flint.mps.date}" /> | ||
<property name="mps.build.vcs.number" value="${import.Flint.mps.build.vcs.number}" /> | ||
<property name="mps.teamcity.buildConfName" value="${import.Flint.mps.teamcity.buildConfName}" /> | ||
<property name="mps.idea.platform.build.number" value="${import.Flint.mps.idea.platform.build.number}" /> | ||
<property name="mps.mps.build.counter" value="${import.Flint.mps.mps.build.counter}" /> | ||
<property name="de.itemis.mps.extensions.versionNumber" value="${import.Flint.de.itemis.mps.extensions.versionNumber}" /> | ||
|
||
<target name="assemble" depends="fetchDependencies"> | ||
<mkdir dir="${build.layout}" /> | ||
<zip destfile="${build.layout}/Flint.zip"> | ||
<zipfileset dir="${artifacts.Flint}/plugins/Flint" prefix="Flint" /> | ||
</zip> | ||
<echo file="${build.layout}/build.properties">FlintPluginDistribution.version=${version}${line.separator}Flint.date=${Flint.date}${line.separator}Flint.build.number=${Flint.build.number}${line.separator}mpsBootstrapCore.version=${mpsBootstrapCore.version}${line.separator}com.mbeddr.platform.major.version=${com.mbeddr.platform.major.version}${line.separator}com.mbeddr.platform.minor.version=${com.mbeddr.platform.minor.version}${line.separator}com.mbeddr.platform.build=${com.mbeddr.platform.build}${line.separator}com.mbeddr.platform.mbeddr.version=${com.mbeddr.platform.mbeddr.version}${line.separator}mps.build.number=${mps.build.number}${line.separator}mps.date=${mps.date}${line.separator}mps.build.vcs.number=${mps.build.vcs.number}${line.separator}mps.teamcity.buildConfName=${mps.teamcity.buildConfName}${line.separator}mps.idea.platform.build.number=${mps.idea.platform.build.number}${line.separator}mps.mps.build.counter=${mps.mps.build.counter}${line.separator}de.itemis.mps.extensions.versionNumber=${de.itemis.mps.extensions.versionNumber}</echo> | ||
</target> | ||
|
||
<target name="buildDependents"> | ||
<ant antfile="buildFlint.xml" inheritAll="false" useNativeBasedir="true" /> | ||
</target> | ||
|
||
<target name="fetchDependencies" /> | ||
|
||
<target name="build" depends="assemble" /> | ||
|
||
<target name="clean"> | ||
<delete dir="${build.tmp}" /> | ||
<delete dir="${build.layout}" /> | ||
</target> | ||
</project> |
Oops, something went wrong.