|
1 |
| -<?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"> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 |
|
3 |
| - <modelVersion>4.0.0</modelVersion> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 |
| - <parent> |
6 |
| - <groupId>org.openhab.distro</groupId> |
7 |
| - <artifactId>pom-distributions</artifactId> |
8 |
| - <version>4.2.0-SNAPSHOT</version> |
9 |
| - </parent> |
| 7 | + <parent> |
| 8 | + <groupId>org.openhab.distro</groupId> |
| 9 | + <artifactId>pom-distributions</artifactId> |
| 10 | + <version>4.2.0-SNAPSHOT</version> |
| 11 | + </parent> |
10 | 12 |
|
11 |
| - <artifactId>openhab-addons</artifactId> |
12 |
| - <packaging>kar</packaging> |
| 13 | + <artifactId>openhab-addons</artifactId> |
| 14 | + <packaging>kar</packaging> |
13 | 15 |
|
14 |
| - <name>openHAB Add-ons Aggregator</name> |
| 16 | + <name>openHAB Add-ons Aggregator</name> |
15 | 17 |
|
16 |
| - <dependencies> |
17 |
| - <dependency> |
18 |
| - <groupId>org.openhab.distro</groupId> |
19 |
| - <artifactId>addons</artifactId> |
20 |
| - <version>${project.version}</version> |
21 |
| - <classifier>features</classifier> |
22 |
| - <type>xml</type> |
23 |
| - </dependency> |
24 |
| - <dependency> |
25 |
| - <groupId>org.openhab.addons.features.karaf</groupId> |
26 |
| - <artifactId>org.openhab.addons.features.karaf.openhab-addons</artifactId> |
27 |
| - <version>${project.version}</version> |
28 |
| - <classifier>features</classifier> |
29 |
| - <type>xml</type> |
30 |
| - </dependency> |
31 |
| - <dependency> |
32 |
| - <groupId>org.openhab.addons.features.karaf</groupId> |
33 |
| - <artifactId>openhab-binding-zigbee</artifactId> |
34 |
| - <version>${project.version}</version> |
35 |
| - <classifier>features</classifier> |
36 |
| - <type>xml</type> |
37 |
| - </dependency> |
38 |
| - <dependency> |
39 |
| - <groupId>org.openhab.ui.features</groupId> |
40 |
| - <artifactId>org.openhab.ui.features</artifactId> |
41 |
| - <version>${project.version}</version> |
42 |
| - <classifier>features</classifier> |
43 |
| - <type>xml</type> |
44 |
| - </dependency> |
45 |
| - </dependencies> |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>org.openhab.distro</groupId> |
| 21 | + <artifactId>addons</artifactId> |
| 22 | + <version>${project.version}</version> |
| 23 | + <classifier>features</classifier> |
| 24 | + <type>xml</type> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>org.openhab.addons.features.karaf</groupId> |
| 28 | + <artifactId>org.openhab.addons.features.karaf.openhab-addons</artifactId> |
| 29 | + <version>${project.version}</version> |
| 30 | + <classifier>features</classifier> |
| 31 | + <type>xml</type> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.openhab.addons.features.karaf</groupId> |
| 35 | + <artifactId>openhab-binding-zigbee</artifactId> |
| 36 | + <version>${project.version}</version> |
| 37 | + <classifier>features</classifier> |
| 38 | + <type>xml</type> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.openhab.ui.features</groupId> |
| 42 | + <artifactId>org.openhab.ui.features</artifactId> |
| 43 | + <version>${project.version}</version> |
| 44 | + <classifier>features</classifier> |
| 45 | + <type>xml</type> |
| 46 | + </dependency> |
| 47 | + </dependencies> |
46 | 48 |
|
47 |
| - <build> |
48 |
| - <plugins> |
49 |
| - <plugin> |
50 |
| - <groupId>org.apache.karaf.tooling</groupId> |
51 |
| - <artifactId>karaf-maven-plugin</artifactId> |
52 |
| - <extensions>true</extensions> |
53 |
| - <configuration> |
54 |
| - <startLevel>80</startLevel> |
55 |
| - <enableGeneration>true</enableGeneration> |
56 |
| - <aggregateFeatures>true</aggregateFeatures> |
57 |
| - <!-- <resolver>(obr)</resolver> --> |
58 |
| - <checkDependencyChange>true</checkDependencyChange> |
59 |
| - <failOnDependencyChange>false</failOnDependencyChange> |
60 |
| - <logDependencyChanges>true</logDependencyChanges> |
61 |
| - <overwriteChangedDependencies>true</overwriteChangedDependencies> |
62 |
| - <ignoreDependencyFlag>true</ignoreDependencyFlag> |
63 |
| - <archive> |
64 |
| - <index>true</index> |
65 |
| - <manifestEntries> |
66 |
| - <Karaf-Feature-Start>false</Karaf-Feature-Start> |
67 |
| - </manifestEntries> |
68 |
| - </archive> |
69 |
| - </configuration> |
70 |
| - <executions> |
71 |
| - <execution> |
72 |
| - <id>generate-features-file</id> |
73 |
| - <phase>generate-resources</phase> |
74 |
| - <goals> |
75 |
| - <goal>features-generate-descriptor</goal> |
76 |
| - </goals> |
77 |
| - </execution> |
78 |
| - </executions> |
79 |
| - </plugin> |
80 |
| - </plugins> |
81 |
| - </build> |
| 49 | + <build> |
| 50 | + <plugins> |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.karaf.tooling</groupId> |
| 53 | + <artifactId>karaf-maven-plugin</artifactId> |
| 54 | + <extensions>true</extensions> |
| 55 | + <configuration> |
| 56 | + <startLevel>80</startLevel> |
| 57 | + <enableGeneration>true</enableGeneration> |
| 58 | + <aggregateFeatures>true</aggregateFeatures> |
| 59 | + <!-- <resolver>(obr)</resolver> --> |
| 60 | + <checkDependencyChange>true</checkDependencyChange> |
| 61 | + <failOnDependencyChange>false</failOnDependencyChange> |
| 62 | + <logDependencyChanges>true</logDependencyChanges> |
| 63 | + <overwriteChangedDependencies>true</overwriteChangedDependencies> |
| 64 | + <ignoreDependencyFlag>true</ignoreDependencyFlag> |
| 65 | + <archive> |
| 66 | + <index>true</index> |
| 67 | + <manifestEntries> |
| 68 | + <Karaf-Feature-Start>false</Karaf-Feature-Start> |
| 69 | + </manifestEntries> |
| 70 | + </archive> |
| 71 | + </configuration> |
| 72 | + <executions> |
| 73 | + <execution> |
| 74 | + <id>generate-features-file</id> |
| 75 | + <goals> |
| 76 | + <goal>features-generate-descriptor</goal> |
| 77 | + </goals> |
| 78 | + <phase>generate-resources</phase> |
| 79 | + </execution> |
| 80 | + </executions> |
| 81 | + </plugin> |
| 82 | + </plugins> |
| 83 | + </build> |
82 | 84 |
|
83 | 85 | </project>
|
0 commit comments