-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
73 lines (63 loc) · 1.68 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
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.hexagonkt</groupId>
<artifactId>kotlin_pom</artifactId>
<version>3.7.0</version>
</parent>
<groupId>org.example</groupId>
<artifactId>maven_starter</artifactId>
<version>1.0.0</version>
<description>Service's description</description>
<properties>
<hexagonVersion>3.7.0</hexagonVersion>
<exec.mainClass>org.example.MavenStarterKt</exec.mainClass>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.hexagonkt</groupId>
<artifactId>hexagon_bom</artifactId>
<version>${hexagonVersion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.hexagonkt</groupId>
<artifactId>http_server_jetty</artifactId>
</dependency>
<dependency>
<groupId>com.hexagonkt</groupId>
<artifactId>http_client_jetty</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<build>
<plugins>
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>