Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/docker-otel-lgtm
Path: blob/main/examples/java/pom.xml
401 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4
<modelVersion>4.0.0</modelVersion>
5
6
<groupId>com.grafana.example</groupId>
7
<artifactId>rolldice</artifactId>
8
<version>1.0.0-SNAPSHOT</version>
9
10
<name>Hello World REST Service</name>
11
12
<properties>
13
<spring.version>3.3.4</spring.version>
14
<maven.compiler.source>17</maven.compiler.source>
15
<maven.compiler.target>17</maven.compiler.target>
16
</properties>
17
18
<dependencyManagement>
19
<dependencies>
20
<dependency>
21
<groupId>org.springframework.boot</groupId>
22
<artifactId>spring-boot-dependencies</artifactId>
23
<version>${spring.version}</version>
24
<type>pom</type>
25
<scope>import</scope>
26
</dependency>
27
</dependencies>
28
</dependencyManagement>
29
30
<dependencies>
31
<dependency>
32
<groupId>org.springframework.boot</groupId>
33
<artifactId>spring-boot-starter-web</artifactId>
34
</dependency>
35
</dependencies>
36
37
<build>
38
<finalName>${project.artifactId}</finalName>
39
<plugins>
40
<plugin>
41
<groupId>org.springframework.boot</groupId>
42
<artifactId>spring-boot-maven-plugin</artifactId>
43
<executions>
44
<execution>
45
<goals>
46
<goal>repackage</goal>
47
</goals>
48
</execution>
49
</executions>
50
</plugin>
51
</plugins>
52
</build>
53
</project>
54
55