This repository was archived by the owner on Jan 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpom.xml
More file actions
126 lines (123 loc) · 6.69 KB
/
pom.xml
File metadata and controls
126 lines (123 loc) · 6.69 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.2</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>io.github.nubesgen</groupId>
<artifactId>nubesgen</artifactId>
<!-- Do not modify this version manually, read https://github.com/microsoft/NubesGen/blob/main/CONTRIBUTING.md#doing-a-release -->
<version>0.18.3-SNAPSHOT</version>
<name>nubesgen</name>
<packaging>jar</packaging>
<description>NubesGen REST server</description>
<scm>
<url>https://github.com/microsoft/NubesGen</url>
<connection>scm:git:https://github.com/microsoft/NubesGen.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
<java.version>21</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mustache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.29.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.27.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-indexer</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.6.0</version>
</dependency>
</dependencies>
<build>
<defaultGoal>spring-boot:run</defaultGoal>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<layers>
<enabled>true</enabled>
</layers>
</configuration>
</plugin>
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<configuration>
<buildArgs>
<arg>--initialize-at-build-time=org.slf4j.impl.StaticLoggerBinder,org.slf4j.LoggerFactory,ch.qos.logback.classic.Logger,ch.qos.logback.core.spi.AppenderAttachableImpl,ch.qos.logback.core.status.StatusBase,ch.qos.logback.classic.Level,ch.qos.logback.core.status.InfoStatus,ch.qos.logback.classic.PatternLayout,ch.qos.logback.core.CoreConstants,ch.qos.logback.core.util.Loader,ch.qos.logback.core.util.StatusPrinter,ch.qos.logback.core.pattern.parser.Parser,ch.qos.logback.classic.spi.LogbackServiceProvider,ch.qos.logback.classic.LoggerContext,org.slf4j.helpers.NOPLoggerFactory,org.slf4j.helpers.SubstituteServiceProvider,ch.qos.logback.core.joran.spi.ConsoleTarget,ch.qos.logback.core.joran.spi.ConsoleTarget$2,ch.qos.logback.core.util.CachingDateFormatter,ch.qos.logback.core.encoder.LayoutWrappingEncoder,org.slf4j.helpers.SubstituteLoggerFactory,ch.qos.logback.classic.pattern.ThrowableProxyConverter,ch.qos.logback.classic.layout.TTLLLayout,ch.qos.logback.core.joran.spi.ConsoleTarget$1,ch.qos.logback.core.spi.ContextAwareImpl,ch.qos.logback.classic.util.ContextInitializer$1,ch.qos.logback.classic.BasicConfigurator,ch.qos.logback.classic.util.ContextInitializer,ch.qos.logback.core.spi.LogbackLock,ch.qos.logback.core.helpers.CyclicBuffer,ch.qos.logback.core.BasicStatusManager,ch.qos.logback.classic.util.LogbackMDCAdapter,ch.qos.logback.core.spi.FilterAttachableImpl,ch.qos.logback.classic.spi.TurboFilterList,ch.qos.logback.core.ConsoleAppender,ch.qos.logback.core.util.CachingDateFormatter$CacheTuple,ch.qos.logback.core.util.COWArrayList,ch.qos.logback.classic.spi.LoggerContextVO,org.slf4j.helpers.NOP_FallbackServiceProvider,com.fasterxml.jackson.core.Base64Variant,com.fasterxml.jackson.core.Base64Variant$PaddingReadBehaviour</arg>
</buildArgs>
</configuration>
</plugin>
<!--
To do a NubesGen release:
- mvn release:clean release:prepare
- gh release create <TAG_NAME>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<version>9.0.1</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
<phase>initialize</phase>
</execution>
</executions>
<configuration>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<includeOnlyProperties>
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
</includeOnlyProperties>
<commitIdGenerationMode>full</commitIdGenerationMode>
</configuration>
</plugin>
</plugins>
</build>
</project>