-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpom.xml
More file actions
106 lines (95 loc) · 3.75 KB
/
pom.xml
File metadata and controls
106 lines (95 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.hubspot</groupId>
<artifactId>basepom</artifactId>
<version>68.1</version>
</parent>
<groupId>com.hubspot.rosetta</groupId>
<artifactId>Rosetta</artifactId>
<version>3.13.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>
Rosetta is a Java library that leverages Jackson to take the pain out of
mapping objects to/from the DB, designed to integrate seamlessly with jDBI.
</description>
<modules>
<module>RosettaAnnotations</module>
<module>RosettaCore</module>
<module>RosettaJdbi</module>
<module>RosettaJdbi3</module>
<module>RosettaImmutables</module>
</modules>
<properties>
<project.build.releaseJdk>8</project.build.releaseJdk>
<project.build.targetJdk>8</project.build.targetJdk>
<dep.jackson-databind.version>${dep.jackson.version}</dep.jackson-databind.version>
<dep.jackson.version>2.18.2</dep.jackson.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.hubspot.rosetta</groupId>
<artifactId>RosettaAnnotations</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.hubspot.rosetta</groupId>
<artifactId>RosettaCore</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.hubspot.rosetta</groupId>
<artifactId>RosettaCore</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>com.hubspot.rosetta</groupId>
<artifactId>RosettaJdbi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.hubspot.rosetta</groupId>
<artifactId>RosettaJdbi3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi3-core</artifactId>
<version>3.28.0</version>
</dependency>
<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi3-sqlobject</artifactId>
<version>3.28.0</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.3.232</version>
</dependency>
</dependencies>
</dependencyManagement>
<url>https://github.com/HubSpot/Rosetta</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Jonathan Haber</name>
<email>jhaber@hubspot.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:HubSpot/Rosetta.git</connection>
<developerConnection>scm:git:git@github.com:HubSpot/Rosetta.git</developerConnection>
<url>git@github.com:HubSpot/Rosetta.git</url>
<tag>HEAD</tag>
</scm>
</project>