-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
77 lines (69 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.drewctaylor</groupId>
<artifactId>maven</artifactId>
<version>0.0.2</version>
</parent>
<artifactId>require</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Ensure that arguments to a method satisfy requirements.</description>
<url>https://github.com/drewctaylor/require</url>
<inceptionYear>2020</inceptionYear>
<organization>
<name>Drew Taylor</name>
<url>https://github.com/drewctaylor</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Drew Taylor</name>
<email>3899848+drewctaylor@users.noreply.github.com</email>
<organization>Drew Taylor</organization>
<organizationUrl>https://github.com/drewctaylor</organizationUrl>
</developer>
</developers>
<scm>
<connection>https://github.com/drewctaylor/require</connection>
<developerConnection>https://github.com/drewctaylor/require</developerConnection>
<url>https://github.com/drewctaylor/require</url>
</scm>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>ossrh-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>