Skip to content

Instantly share code, notes, and snippets.

@kennetham
Last active March 12, 2019 03:21
Show Gist options
  • Save kennetham/f21107f0d8536a8660bb4b369d322029 to your computer and use it in GitHub Desktop.
Save kennetham/f21107f0d8536a8660bb4b369d322029 to your computer and use it in GitHub Desktop.
Pom file for Java Serverless Function with Kubeless on Kubernetes
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>function</artifactId>
<name>function</name>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.kubeless</groupId>
<artifactId>params</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<parent>
<groupId>io.kubeless</groupId>
<artifactId>kubeless</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment