-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
39 lines (36 loc) · 1.08 KB
/
pom.xml
File metadata and controls
39 lines (36 loc) · 1.08 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
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.fission</groupId>
<artifactId>fission-java-core</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>Fission java library</name>
<description>
A library for writing Fission functions using JVM runtime
</description>
<url>https://fission.io/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/fission/fission-java-libs.git</url>
</scm>
<developers>
<developer>
<name>Fission team</name>
<organization>Platform9</organization>
<organizationUrl>https://platform9.com/</organizationUrl>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>