-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
74 lines (74 loc) · 2.52 KB
/
pom.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.freedriver.autonomy</groupId>
<artifactId>autonomy</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Autonomy</name>
<modules>
<module>jpa</module>
<module>api</module>
<module>quarkus</module>
<module>environment</module>
</modules>
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
<io.freedriver.version>1.0.0-SNAPSHOT</io.freedriver.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.thorntail>2.6.0.Final</version.thorntail>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>bom-all</artifactId>
<version>${version.thorntail}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.freedriver</groupId>
<artifactId>freedriver-parent</artifactId>
<version>${io.freedriver.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.freedriver.autonomy</groupId>
<artifactId>autonomy-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.freedriver.autonomy</groupId>
<artifactId>environment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.freedriver.autonomy</groupId>
<artifactId>autonomy-jpa</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.freedriver.autonomy</groupId>
<artifactId>autonomy-quarkus</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>oss.sonatype.org-snapshot</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>