Skip to content
Open
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
2 changes: 1 addition & 1 deletion com.avaloq.tools.ddk/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: com.avaloq.tools.ddk
Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true
Bundle-Version: 17.3.0.qualifier
Bundle-Version: 17.3.1.qualifier
Bundle-Vendor: Avaloq Group AG
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-ActivationPolicy: lazy
Expand Down
2 changes: 2 additions & 0 deletions com.avaloq.tools.ddk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@
<groupId>com.avaloq.tools.ddk</groupId>
<artifactId>com.avaloq.tools.ddk</artifactId>
<packaging>eclipse-plugin</packaging>
<version>17.3.1-SNAPSHOT</version>

</project>
27 changes: 17 additions & 10 deletions ddk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<maven.deploy.skip>true</maven.deploy.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<target.platform>ddk</target.platform>
<target.platform.version>17.3.0-SNAPSHOT</target.platform.version>
<workspace>${env.WORKSPACE}</workspace>

<!-- OSGI parameter -->
Expand Down Expand Up @@ -60,8 +61,9 @@
<!-- jgit qualifier: error in CI, warning for local dirty trees -->
<jgit.dirtyWorkingTree>error</jgit.dirtyWorkingTree>

<!-- Baseline version validation (skip until first release populates p2/releases/latest/) -->
<baseline.repo.url>https://dsldevkit.github.io/dsl-devkit/p2/releases/latest/</baseline.repo.url>
<!-- Baseline version validation (skip until GitHub Pages serves from gh-pages branch) -->
<baseline.repo.url>https://ddk.tools.avaloq.com/dsl-devkit/p2/releases/latest/</baseline.repo.url>
<snapshot.repo.url>https://ddk.tools.avaloq.com/dsl-devkit/p2/snapshots/latest/</snapshot.repo.url>
<baseline.skip>true</baseline.skip>
</properties>

Expand Down Expand Up @@ -190,7 +192,7 @@
<artifact>
<groupId>com.avaloq.tools.ddk</groupId>
<artifactId>ddk-target</artifactId>
<version>${project.version}</version>
<version>${target.platform.version}</version>
<classifier>${target.platform}</classifier>
</artifact>
</target>
Expand Down Expand Up @@ -262,13 +264,6 @@
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<baselineRepositories>
<repository>
<url>https://dsldevkit.github.io/dsl-devkit/p2/snapshots/latest/</url>
</repository>
</baselineRepositories>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
Expand Down Expand Up @@ -411,6 +406,18 @@
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<baselineRepositories>
<repository>
<url>${snapshot.repo.url}</url>
</repository>
</baselineRepositories>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${clean.version}</version>
Expand Down