Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 1 addition & 4 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# These owners will be the default owners for everything in this repertoire.
# Unless a later match takes precedence, they will be requested for review when someone opens a pull request.
* @YvesKirschner

# These owners are the default owners for all build and deployment workflows.
.github/workflows/* @Nicolas-Boltz @larissaschmid
* @Nicolas-Boltz
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ on: [push, pull_request, workflow_dispatch]

jobs:
Build-LicenseFeature:
uses: PalladioSimulator/Palladio-Build-ActionsPipeline/.github/workflows/build.yml@master
uses: PalladioSimulator/Palladio-Build-ActionsPipeline/.github/workflows/build.yml@FixTagCreationLogic
with:
use-display-output: true
runner-label: ubuntu-latest
java-version: 17
java-version: 21
deploy-updatesite: 'releng/tools.mdsd.license.updatesite/target/repository'
release-version: 1.0.0
release-version: 1.1.0
secrets:
SERVER_SSH_KEY: ${{ secrets.DEPLOYMENT_SERVER_SSH_KEY }}
REMOTE_HOST: ${{ secrets.DEPLOYMENT_REMOTE_HOST }}
Expand Down
4 changes: 2 additions & 2 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<extension>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-build</artifactId>
<version>2.7.5</version>
<version>4.0.13</version>
</extension>
</extensions>
</extensions>
4 changes: 0 additions & 4 deletions Jenkinsfile

This file was deleted.

2 changes: 1 addition & 1 deletion features/tools.mdsd.license.apache2/feature.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="tools.mdsd.license.apache2"
version="1.0.0"
version="1.1.0"
provider-name="%providerName">

<copyright url="%copyrightURL">
Expand Down
2 changes: 1 addition & 1 deletion features/tools.mdsd.license.epl2/feature.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="tools.mdsd.license.epl2"
version="1.0.0"
version="1.1.0"
provider-name="%providerName">

<copyright url="%copyrightURL">
Expand Down
110 changes: 98 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,23 +1,109 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tools.mdsd</groupId>
<artifactId>eclipse-parent-updatesite-notp</artifactId>
<version>0.8.12</version>
</parent>
<groupId>tools.mdsd.license</groupId>
<artifactId>parent</artifactId>
<version>1.0.0</version>
<artifactId>parent</artifactId>
<version>1.1.0</version>
<packaging>pom</packaging>


<name>${project.artifactId}</name>
<description>License features shared by all MDSD.tools update sites.</description>
<url>http://mdsd.tools</url>

<properties>
<tycho.version>4.0.13</tycho.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
</properties>

<!-- This repository contains features only, so there is nothing to resolve
beyond the platform itself and no target definition is needed. -->
<repositories>
<repository>
<id>eclipse</id>
<layout>p2</layout>
<url>https://download.eclipse.org/releases/2024-06/202406121000/</url>
</repository>
</repositories>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>aarch64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>aarch64</arch>
</environment>
</environments>
</configuration>
</plugin>
<!-- category.xml references the .source features, so they have to be built. -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<version>${tycho.version}</version>
<executions>
<execution>
<id>feature-source</id>
<goals>
<goal>feature-source</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho.version}</version>
<executions>
<execution>
<id>attached-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<modules>
<module>features</module>
<module>releng</module>
</modules>

</project>


</project>