2024-07-08 00:03:57 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-04-05 06:28:49 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.ui</groupId>
|
|
|
|
<artifactId>org.openhab.ui.reactor</artifactId>
|
2024-07-07 23:43:10 +00:00
|
|
|
<version>4.3.0-SNAPSHOT</version>
|
2019-04-05 06:28:49 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.openhab.ui.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.ui.reactor.bundles</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>openHAB UI :: Bundles</name>
|
|
|
|
|
|
|
|
<modules>
|
2020-01-19 16:20:17 +00:00
|
|
|
<module>org.openhab.ui</module>
|
2019-04-05 06:28:49 +00:00
|
|
|
<module>org.openhab.ui.basic</module>
|
|
|
|
<module>org.openhab.ui.cometvisu</module>
|
|
|
|
<module>org.openhab.ui.habot</module>
|
|
|
|
<module>org.openhab.ui.habpanel</module>
|
|
|
|
<module>org.openhab.ui.iconset.classic</module>
|
|
|
|
</modules>
|
|
|
|
|
2020-11-04 14:23:34 +00:00
|
|
|
<properties>
|
|
|
|
<m2e.jdt.annotationpath>target/dependency</m2e.jdt.annotationpath>
|
|
|
|
</properties>
|
|
|
|
|
2020-05-08 19:33:24 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.compile</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.compile-model</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.test</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-12-05 22:04:41 +00:00
|
|
|
<!-- Distribution -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.features</groupId>
|
|
|
|
<artifactId>framework</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
<type>kar</type>
|
|
|
|
<optional>true</optional>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<!-- Repositories -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.features</groupId>
|
|
|
|
<artifactId>standard</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
<classifier>features</classifier>
|
|
|
|
<type>xml</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-05-08 19:33:24 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2019-04-05 06:28:49 +00:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
<skipIfEmpty>true</skipIfEmpty>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-12-05 22:04:41 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
|
|
<artifactId>karaf-maven-plugin</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<startLevel>80</startLevel>
|
|
|
|
<aggregateFeatures>true</aggregateFeatures>
|
|
|
|
<checkDependencyChange>true</checkDependencyChange>
|
|
|
|
<failOnDependencyChange>false</failOnDependencyChange>
|
|
|
|
<logDependencyChanges>true</logDependencyChanges>
|
|
|
|
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compile</id>
|
|
|
|
<goals>
|
|
|
|
<goal>features-generate-descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<inputFile>${feature.directory}</inputFile>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>karaf-feature-verification</id>
|
|
|
|
<goals>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<configuration>
|
|
|
|
<descriptors combine.children="append">
|
|
|
|
<!-- Apache Karaf -->
|
|
|
|
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>
|
|
|
|
<descriptor>mvn:org.apache.karaf.features/standard/${karaf.version}/xml/features</descriptor>
|
2023-09-30 08:47:42 +00:00
|
|
|
<descriptor>mvn:org.apache.karaf.features/specs/${karaf.version}/xml/features</descriptor>
|
2022-12-05 22:04:41 +00:00
|
|
|
<!-- Current feature under verification -->
|
|
|
|
<descriptor>file:${project.build.directory}/feature/feature.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<distribution>org.apache.karaf.features:framework</distribution>
|
|
|
|
<javase>${oh.java.version}</javase>
|
|
|
|
<framework>
|
|
|
|
<feature>framework</feature>
|
|
|
|
</framework>
|
|
|
|
<features>
|
|
|
|
<feature>openhab-*</feature>
|
|
|
|
</features>
|
|
|
|
<verifyTransitive>false</verifyTransitive>
|
|
|
|
<ignoreMissingConditions>true</ignoreMissingConditions>
|
|
|
|
<fail>first</fail>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-04-05 06:28:49 +00:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-12-05 22:04:41 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
|
|
<artifactId>karaf-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-11-04 14:23:34 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
Update Maven plugins (#2551)
Update nearly all Maven plugins:
* set minimum Maven version to 3.6.3
* build-helper-maven-plugin, 3.4.0 to 3.5.0, see
https://github.com/mojohaus/build-helper-maven-plugin/releases/tag/3.5.0
* frontend-maven-plugin, 1.13.4 to 1.15.0, see
https://github.com/eirslett/frontend-maven-plugin/blob/master/CHANGELOG.md
* license-maven-plugin, 4.2 to 4.3
* maven-clean-plugin, 3.3.1 to 3.3.2, see
https://github.com/apache/maven-clean-plugin/releases
* maven-dependency-plugin, 3.6.0 to 3.6.1, see
https://github.com/apache/maven-dependency-plugin/releases/tag/maven-dependency-plugin-3.6.1
* maven-enforcer-plugin, 3.4.0 to 3.4.1
* maven-jar-plugin, 3.3.0 to 3.4.1, see
https://github.com/apache/maven-jar-plugin/releases
* maven-javadoc-plugin, 3.2.0 to 3.6.3, see
https://github.com/apache/maven-javadoc-plugin/releases
* maven-plugin-plugin, 3.9.0 to 3.12.0, see
https://github.com/apache/maven-plugin-tools/releases/tag/maven-plugin-tools-3.12.0
* maven-site-plugin, 3.12.1 to 4.0.0-M13
* maven-source-plugin, 3.3.0 to 3.3.1
* maven-surefire-plugin, 3.1.2 to 3.2.5, see
https://github.com/apache/maven-surefire/releases
* sortpom-maven-plugin, 3.3.0 to 3.4.1
* spotless-maven-plugin, 2.38.0 to 2.43.0, see
https://github.com/diffplug/spotless/blob/main/plugin-maven/CHANGES.md
Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
2024-04-26 08:57:54 +00:00
|
|
|
<version>3.6.1</version>
|
2020-11-04 14:23:34 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-eea</id>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.lastnpe.eea</groupId>
|
|
|
|
<artifactId>eea-all</artifactId>
|
2020-11-30 11:21:30 +00:00
|
|
|
<version>${eea.version}</version>
|
2020-11-04 14:23:34 +00:00
|
|
|
<overWrite>true</overWrite>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-04-05 06:28:49 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|