|
9 | 9 | <version>3.5.4</version> |
10 | 10 | </parent> |
11 | 11 |
|
| 12 | + <groupId>com.segment.analytics.java</groupId> |
12 | 13 | <artifactId>analytics-core</artifactId> |
| 14 | + <version>3.5.5-SNAPSHOT</version> |
13 | 15 | <name>Analytics for Java (Core)</name> |
14 | 16 |
|
| 17 | + <description>Core runtime for Segment Analytics for Java.</description> |
| 18 | + <url>https://github.com/segmentio/analytics-java</url> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>The MIT License (MIT)</name> |
| 23 | + <url>http://opensource.org/licenses/MIT</url> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + |
| 27 | + <scm> |
| 28 | + <url>https://github.com/segmentio/analytics-java/</url> |
| 29 | + <connection>scm:git:https://github.com/segmentio/analytics-java.git</connection> |
| 30 | + < developerConnection>scm:git: [email protected]:segmentio/analytics-java.git</ developerConnection> |
| 31 | + <tag>analytics-parent-3.5.4</tag> |
| 32 | + </scm> |
| 33 | + |
| 34 | + <developers> |
| 35 | + <developer> |
| 36 | + <id>segment</id> |
| 37 | + <name>Segment</name> |
| 38 | + <organization>Segment</organization> |
| 39 | + <organizationUrl>https://segment.com</organizationUrl> |
| 40 | + </developer> |
| 41 | + </developers> |
| 42 | + |
15 | 43 | <dependencies> |
16 | 44 | <dependency> |
17 | 45 | <groupId>com.squareup.retrofit2</groupId> |
18 | 46 | <artifactId>retrofit</artifactId> |
| 47 | + <version>${retrofit.version}</version> |
19 | 48 | </dependency> |
20 | 49 | <dependency> |
21 | 50 | <groupId>com.google.code.gson</groupId> |
22 | 51 | <artifactId>gson</artifactId> |
| 52 | + <version>${gson.version}</version> |
23 | 53 | </dependency> |
24 | 54 | <dependency> |
25 | 55 | <groupId>com.google.code.findbugs</groupId> |
26 | 56 | <artifactId>findbugs</artifactId> |
| 57 | + <version>${findbugs.version}</version> |
27 | 58 | <scope>provided</scope> |
28 | 59 | </dependency> |
29 | 60 | <dependency> |
30 | 61 | <groupId>com.google.auto.value</groupId> |
31 | 62 | <artifactId>auto-value</artifactId> |
| 63 | + <version>${auto.version}</version> |
32 | 64 | <scope>provided</scope> |
33 | 65 | </dependency> |
34 | 66 | <dependency> |
35 | 67 | <groupId>com.google.auto.value</groupId> |
36 | 68 | <artifactId>auto-value-annotations</artifactId> |
| 69 | + <version>${auto.version}</version> |
37 | 70 | </dependency> |
38 | 71 | <dependency> |
39 | 72 | <groupId>com.google.guava</groupId> |
40 | 73 | <artifactId>guava</artifactId> |
| 74 | + <version>${guava.version}</version> |
41 | 75 | <scope>provided</scope> |
42 | 76 | </dependency> |
43 | 77 | <dependency> |
|
51 | 85 | <version>1.3.2</version> |
52 | 86 | </dependency> |
53 | 87 |
|
| 88 | + <dependency> |
| 89 | + <groupId>javax.annotation</groupId> |
| 90 | + <artifactId>javax.annotation-api</artifactId> |
| 91 | + <version>1.3.2</version> |
| 92 | + </dependency> |
| 93 | + |
54 | 94 | <dependency> |
55 | 95 | <groupId>junit</groupId> |
56 | 96 | <artifactId>junit</artifactId> |
| 97 | + <version>${junit.version}</version> |
57 | 98 | <scope>test</scope> |
58 | 99 | </dependency> |
59 | 100 | <dependency> |
60 | 101 | <groupId>com.squareup.burst</groupId> |
61 | 102 | <artifactId>burst-junit4</artifactId> |
| 103 | + <version>${burst.version}</version> |
62 | 104 | <scope>test</scope> |
63 | 105 | </dependency> |
64 | 106 | <dependency> |
65 | 107 | <groupId>com.squareup.burst</groupId> |
66 | 108 | <artifactId>burst</artifactId> |
| 109 | + <version>${burst.version}</version> |
67 | 110 | <scope>test</scope> |
68 | 111 | </dependency> |
69 | 112 | <dependency> |
70 | 113 | <groupId>org.assertj</groupId> |
71 | 114 | <artifactId>assertj-core</artifactId> |
| 115 | + <version>${assertj.version}</version> |
72 | 116 | <scope>test</scope> |
73 | 117 | </dependency> |
74 | 118 | <dependency> |
75 | 119 | <groupId>org.mockito</groupId> |
76 | 120 | <artifactId>mockito-core</artifactId> |
| 121 | + <version>${mockito.version}</version> |
77 | 122 | <scope>test</scope> |
78 | 123 | </dependency> |
79 | 124 | </dependencies> |
|
0 commit comments