Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3b21371

Browse filesBrowse files
committed
FME-15373-impressions: create impressions module skeleton with pom and empty source tree
AI-Session-Id: 52375eb8-af89-45b8-bbad-1698b6636202 AI-Tool: claude-code AI-Model: unknown
1 parent 32cfb5e commit 3b21371
Copy full SHA for 3b21371

2 files changed

+60Lines changed: 60 additions & 0 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎impressions/pom.xml‎

Copy file name to clipboard
+59Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<parent>
9+
<groupId>io.split.client</groupId>
10+
<artifactId>java-client-parent</artifactId>
11+
<version>4.18.3</version>
12+
</parent>
13+
14+
<artifactId>impressions</artifactId>
15+
<packaging>jar</packaging>
16+
<name>Impressions</name>
17+
<description>Impression tracking core: dedup strategies, bloom-filter unique-key tracking, counter aggregation</description>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>com.google.code.gson</groupId>
22+
<artifactId>gson</artifactId>
23+
<version>2.13.1</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.slf4j</groupId>
27+
<artifactId>slf4j-api</artifactId>
28+
<version>1.7.36</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.google.guava</groupId>
32+
<artifactId>guava</artifactId>
33+
<version>32.0.1-jre</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>junit</groupId>
37+
<artifactId>junit</artifactId>
38+
<scope>test</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.mockito</groupId>
42+
<artifactId>mockito-core</artifactId>
43+
<version>1.10.19</version>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.powermock</groupId>
48+
<artifactId>powermock-module-junit4</artifactId>
49+
<version>1.7.4</version>
50+
<scope>test</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.powermock</groupId>
54+
<artifactId>powermock-api-mockito</artifactId>
55+
<version>1.7.4</version>
56+
<scope>test</scope>
57+
</dependency>
58+
</dependencies>
59+
</project>
Collapse file

‎pom.xml‎

Copy file name to clipboardExpand all lines: pom.xml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<module>testing</module>
7373
<module>okhttp-modules</module>
7474
<module>tracker</module>
75+
<module>impressions</module>
7576
<module>client</module>
7677
</modules>
7778
<build>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.