hmcommits commited on
Commit
3e437d4
·
verified ·
1 Parent(s): afa19f2

create pom.xml

Browse files
Files changed (1) hide show
  1. pom.xml +35 -0
pom.xml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <parent>
6
+ <groupId>org.springframework.boot</groupId>
7
+ <artifactId>spring-boot-starter-parent</artifactId>
8
+ <version>3.2.4</version>
9
+ </parent>
10
+ <groupId>com.authvision</groupId>
11
+ <artifactId>engine</artifactId>
12
+ <version>2.0.0</version>
13
+ <properties>
14
+ <java.version>21</java.version>
15
+ </properties>
16
+ <dependencies>
17
+ <dependency>
18
+ <groupId>org.springframework.boot</groupId>
19
+ <artifactId>spring-boot-starter-web</artifactId>
20
+ </dependency>
21
+ <dependency>
22
+ <groupId>com.microsoft.onnxruntime</groupId>
23
+ <artifactId>onnxruntime</artifactId>
24
+ <version>1.17.1</version>
25
+ </dependency>
26
+ </dependencies>
27
+ <build>
28
+ <plugins>
29
+ <plugin>
30
+ <groupId>org.springframework.boot</groupId>
31
+ <artifactId>spring-boot-maven-plugin</artifactId>
32
+ </plugin>
33
+ </plugins>
34
+ </build>
35
+ </project>