build: add ingest facts module
This commit is contained in:
30
modules/core/ingest-facts/pom.xml
Normal file
30
modules/core/ingest-facts/pom.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.lingniu.ingest</groupId>
|
||||
<artifactId>lingniu-vehicle-ingest</artifactId>
|
||||
<version>0.1.0-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>ingest-facts</artifactId>
|
||||
<name>ingest-facts</name>
|
||||
<description>Protocol-neutral raw frame and decoded fact model for vehicle ingestion.</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.lingniu.ingest</groupId>
|
||||
<artifactId>ingest-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
6
pom.xml
6
pom.xml
@@ -18,6 +18,7 @@
|
||||
|
||||
<modules>
|
||||
<module>modules/core/ingest-api</module>
|
||||
<module>modules/core/ingest-facts</module>
|
||||
<module>modules/core/ingest-codec-common</module>
|
||||
<module>modules/core/ingest-core</module>
|
||||
<module>modules/core/session-core</module>
|
||||
@@ -143,6 +144,11 @@
|
||||
<artifactId>ingest-api</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.lingniu.ingest</groupId>
|
||||
<artifactId>ingest-facts</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.lingniu.ingest</groupId>
|
||||
<artifactId>ingest-core</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user