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
20 changes: 11 additions & 9 deletions bundles/org.eclipse.equinox.wireadmin/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2019, 2025 Eurotech and/or its affiliates. All rights reserved.
Copyright (c) 2019, 2026 Eurotech and/or its affiliates. All rights reserved.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand All @@ -21,6 +21,14 @@
<artifactId>org.eclipse.equinox.wireadmin</artifactId>
<packaging>pom</packaging>

<dependencies>
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.equinox.wireadmin</artifactId>
<version>${equinox.wireadmin.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -36,16 +44,10 @@
<id>fetch-external-bundles</id>
<phase>generate-sources</phase>
<goals>
<goal>copy</goal>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.equinox.wireadmin</artifactId>
<version>${equinox.wireadmin.version}</version>
</artifactItem>
</artifactItems>
<includeArtifactIds>org.eclipse.equinox.wireadmin</includeArtifactIds>
<stripVersion>false</stripVersion>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
Expand Down
105 changes: 58 additions & 47 deletions bundles/org.eclipse.kura.wire.script.tools/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2022, 2024 Eurotech and/or its affiliates and others
Copyright (c) 2022, 2026 Eurotech and/or its affiliates and others

This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -31,6 +31,52 @@
<artifactId>org.eclipse.kura.wire.script.tools</artifactId>
<packaging>eclipse-plugin</packaging>

<dependencies>
<!-- JS engine dependencies -->
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>${graalvm.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-scriptengine</artifactId>
<version>${graalvm.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-launcher</artifactId>
<version>${graalvm.version}</version>
</dependency>
<!-- Common infrastructure dependencies -->
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
<version>${graalvm.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.truffle</groupId>
<artifactId>truffle-api</artifactId>
<version>${graalvm.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.regex</groupId>
<artifactId>regex</artifactId>
<version>${graalvm.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>launcher-common</artifactId>
<version>${graalvm.version}</version>
</dependency>
<!-- Transitive dependencies -->
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>72.1</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -43,54 +89,19 @@
<configuration>
<outputDirectory>${project.basedir}/lib</outputDirectory>
<stripVersion>true</stripVersion>
<artifactItems>
<!-- JS engine dependencies -->
<artifactItem>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.graalvm.js</groupId>
<artifactId>js-scriptengine</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.graalvm.js</groupId>
<artifactId>js-launcher</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<!-- Common infrastructure dependencies -->
<artifactItem>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.graalvm.truffle</groupId>
<artifactId>truffle-api</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.graalvm.regex</groupId>
<artifactId>regex</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.graalvm.sdk</groupId>
<artifactId>launcher-common</artifactId>
<version>${graalvm.version}</version>
</artifactItem>
<!-- Transitive dependencies -->
<artifactItem>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>72.1</version>
</artifactItem>
</artifactItems>
<includeArtifactIds>
js,
js-scriptengine,
js-launcher,
graal-sdk,
truffle-api,
regex,
launcher-common,
icu4j
</includeArtifactIds>
</configuration>
<goals>
<goal>copy</goal>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
Expand Down