-
Notifications
You must be signed in to change notification settings - Fork 35
/
pom.xml
58 lines (52 loc) · 2.04 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
<?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>
<groupId>ai.djl.spring</groupId>
<artifactId>djl-spring-boot-starter-project</artifactId>
<version>0.26-SNAPSHOT</version>
<name>djl-spring-boot-starter-project</name>
<description>DJL starter project for Spring Boot</description>
<packaging>pom</packaging>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modules>
<module>djl-spring-boot-starter-parent</module>
<module>djl-spring-boot-starter-autoconfigure</module>
<module>djl-spring-boot-starter-mxnet-auto</module>
<module>djl-spring-boot-starter-mxnet-osx-x86_64</module>
<module>djl-spring-boot-starter-mxnet-linux-x86_64</module>
<module>djl-spring-boot-starter-pytorch-auto</module>
<module>djl-spring-boot-starter-tensorflow-auto</module>
<module>djl-spring-boot-console-sample</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:[email protected]:deepjavalibrary/djl-spring-boot-starter.git</connection>
<developerConnection>scm:git:[email protected]:deepjavalibrary/djl-spring-boot-starter.git</developerConnection>
<url>https://github.com/deepjavalibrary/djl-spring-boot-starter</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>DJL.AI Team</name>
<email>[email protected]</email>
<organization>Amazon AI</organization>
<organizationUrl>https://amazon.com</organizationUrl>
</developer>
</developers>
</project>