Github user chrisdutz commented on a diff in the pull request:
https://github.com/apache/incubator-edgent-samples/pull/5#discussion_r152833336
--- Diff: apps/pom.xml ---
@@ -37,38 +37,32 @@
<dependency>
<groupId>${edgent.runtime.groupId}</groupId>
<artifactId>edgent-analytics-sensors</artifactId>
- <version>${edgent.runtime.version}</version>
</dependency>
<dependency>
<groupId>${edgent.runtime.groupId}</groupId>
<artifactId>edgent-connectors-file</artifactId>
- <version>${edgent.runtime.version}</version>
</dependency>
<dependency>
<groupId>${edgent.runtime.groupId}</groupId>
<artifactId>edgent-analytics-math3</artifactId>
- <version>${edgent.runtime.version}</version>
</dependency>
<dependency>
<groupId>${edgent.runtime.groupId}</groupId>
<artifactId>edgent-connectors-iot</artifactId>
- <version>${edgent.runtime.version}</version>
</dependency>
<dependency>
<groupId>${edgent.runtime.groupId}</groupId>
<artifactId>edgent-connectors-iotp</artifactId>
- <version>${edgent.runtime.version}</version>
</dependency>
<dependency>
<groupId>${edgent.runtime.groupId}</groupId>
<artifactId>edgent-connectors-mqtt</artifactId>
- <version>${edgent.runtime.version}</version>
</dependency>
<dependency>
- <groupId>${project.groupId}</groupId>
+ <groupId>org.apache.edgent</groupId>
--- End diff --
Yeah ... well the same problem applies to the groupId as for the version
... unfortunately I can't move the groupId to dependency management as I could
the version. So I guess duplicating the properties in every pom seems to be the
only option.
---