Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1241] Fix problem in passage.setup #1366

Merged
merged 1 commit into from
May 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions releng/org.eclipse.passage.releng/passage.setup
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,6 @@
name="JRE for JavaSE-17">
<description>Define the JRE needed to compile and run the Java projects of ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="pde:APIBaselineFromTargetTask"
name="Modular API Baseline"
targetName="org.eclipse.passage.baseline">
<description>An API baseline based on the target platform named 'Modular API Baseline Target'</description>
</setupTask>
<setupTask
xsi:type="git:GitCloneTask"
id="git.clone.passage"
Expand All @@ -117,15 +111,26 @@
<value>remoteURI</value>
</detail>
</annotation>
<configSections
name="branch">
<properties
key="autoSetupRebase"
value="always"/>
</configSections>
<description>${scope.project.label} GitHub</description>
</setupTask>
<setupTask
xsi:type="pde:TargetPlatformTask"
name="org.eclipse.passage.target"/>
<setupTask
xsi:type="pde:APIBaselineFromTargetTask"
name="Passage API Baseline"
targetName="org.eclipse.passage.baseline"/>
<setupTask
xsi:type="projects:ProjectsImportTask">
<sourceLocator
rootFolder="${git.clone.passage.location}"/>
rootFolder="${git.clone.passage.location}"
locateNestedProjects="true"/>
</setupTask>
<setupTask
xsi:type="setup.workingsets:WorkingSetTask">
Expand Down
Loading