-
Notifications
You must be signed in to change notification settings - Fork 121
/
pom.xml
120 lines (112 loc) · 4 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?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>org.optaplanner</groupId>
<artifactId>optaplanner-build-parent</artifactId>
<version>8.35.0.Final</version>
<relativePath/>
</parent>
<groupId>org.optaweb.vehiclerouting</groupId>
<artifactId>optaweb-vehicle-routing</artifactId>
<packaging>pom</packaging>
<name>OptaWeb Vehicle Routing</name>
<!-- Modules are sorted in preferred build order. -->
<modules>
<module>optaweb-vehicle-routing-backend</module>
<module>optaweb-vehicle-routing-frontend</module>
<module>optaweb-vehicle-routing-standalone</module>
<module>optaweb-vehicle-routing-docs</module>
<module>optaweb-vehicle-routing-distribution</module>
</modules>
<properties>
<version.com.graphhopper>6.0</version.com.graphhopper>
<version.com.neovisionaries>1.27</version.com.neovisionaries>
<version.frontend-maven-plugin>1.12.1</version.frontend-maven-plugin>
<version.node>v16.2.0</version.node>
<version.npm>7.15.1</version.npm>
</properties>
<dependencyManagement>
<dependencies>
<!-- Internal dependencies -->
<dependency>
<groupId>org.optaweb.vehiclerouting</groupId>
<artifactId>optaweb-vehicle-routing-backend</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.optaweb.vehiclerouting</groupId>
<artifactId>optaweb-vehicle-routing-docs</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.optaweb.vehiclerouting</groupId>
<artifactId>optaweb-vehicle-routing-frontend</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.optaweb.vehiclerouting</groupId>
<artifactId>optaweb-vehicle-routing-standalone</artifactId>
<version>${project.version}</version>
<classifier>quarkus-app</classifier>
<type>zip</type>
</dependency>
<!-- BOM imports -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${version.io.quarkus}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Dependencies not managed by optaplanner-build-parent and version overrides -->
<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-core</artifactId>
<version>${version.com.graphhopper}</version>
</dependency>
<dependency>
<groupId>com.neovisionaries</groupId>
<artifactId>nv-i18n</artifactId>
<version>${version.com.neovisionaries}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze-only</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<!-- Bootstrap repository to locate the parent POM when it has not been built locally. -->
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>