-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
90 lines (79 loc) · 3.01 KB
/
pom.xml
File metadata and controls
90 lines (79 loc) · 3.01 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
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.zepben.maven</groupId>
<artifactId>evolve-super-pom</artifactId>
<version>0.48.0</version>
</parent>
<groupId>com.zepben</groupId>
<artifactId>command-line-arguments</artifactId>
<version>2.4.0b1</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Command line arguments for EWB and related services</description>
<url>https://github.com/zepben/command-line-arguments/</url>
<organization>
<name>Zeppelin Bend Pty Ltd.</name>
<url>https://zepben.com</url>
</organization>
<licenses>
<license>
<name>Mozilla Public License v2.0</name>
<url>https://mozilla.org/MPL/2.0/</url>
</license>
</licenses>
<developers>
<developer>
<name>Anthony Charlton</name>
<email>anthony.charlton@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Glenn Carwardine</name>
<email>glenn.carwardine@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Kurt Greaves</name>
<email>kurt.greaves@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/zepben/command-line-arguments.git</connection>
<developerConnection>scm:git:ssh://github.com/zepben/command-line-arguments.git</developerConnection>
<url>https://github.com/zepben/command-line-arguments</url>
</scm>
<dependencies>
<!-- Kotlin Packages-->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>com.zepben</groupId>
<artifactId>test-utils</artifactId>
<version>3.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk-jvm</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>