Skip to content

Commit

Permalink
Create a p2 repo with PDE content
Browse files Browse the repository at this point in the history
  • Loading branch information
mickaelistria authored and akurtakov committed Dec 15, 2023
1 parent 404a30f commit d4ea9e0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ pipeline {
}
post {
always {
archiveArtifacts(allowEmptyArchive: true, artifacts: '*.log, \
*/target/work/data/.metadata/*.log, \
*/tests/target/work/data/.metadata/*.log, \
apiAnalyzer-workspace/.metadata/*.log')
archiveArtifacts(allowEmptyArchive: true, artifacts: '*.log,\
*/target/work/data/.metadata/*.log,\
*/tests/target/work/data/.metadata/*.log,\
apiAnalyzer-workspace/.metadata/*.log,\
repository/target/repository/**')
junit '**/target/surefire-reports/*.xml'
discoverGitReferenceBuild referenceJob: 'eclipse.pde/master'
recordIssues publishAllIssues: true, tools: [java(), mavenConsole(), javaDoc()], qualityGates: [[threshold: 1, type: 'NEW', unstable: true]]
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<module>build</module>
<module>features</module>
<module>org.eclipse.pde.doc.user</module>
<module>repository</module>
</modules>

<!--
Expand Down
18 changes: 18 additions & 0 deletions repository/category.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature id="org.eclipse.pde" version="0.0.0"/>
<feature id="org.eclipse.pde.source" version="0.0.0"/>
<feature id="org.eclipse.pde.spies" version="0.0.0"/>
<feature id="org.eclipse.pde.spies.source" version="0.0.0"/>
<feature id="org.eclipse.pde.unittest.junit" version="0.0.0"/>
<feature id="org.eclipse.pde.unittest.junit.source" version="0.0.0"/>
<!-- Tests -->
<bundle id="org.eclipse.pde.ua.tests"/>
<bundle id="org.eclipse.pde.ui.tests"/>
<bundle id="org.eclipse.pde.ui.templates.tests"/>
<bundle id="org.eclipse.pde.genericeditor.extension.tests"/>
<bundle id="org.eclipse.pde.build.tests"/>
<bundle id="org.eclipse.pde.ds.tests"/>
<bundle id="org.eclipse.pde.ua.tests"/>
<bundle id="org.eclipse.pde.junit.runtime.tests"/>
</site>

0 comments on commit d4ea9e0

Please sign in to comment.