-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
97 lines (86 loc) · 2.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tersesystems.ocapjsse</groupId>
<artifactId>ocapjsse-parent</artifactId>
<packaging>pom</packaging>
<version>0.0.2-SNAPSHOT</version>
<!-- ==================================================================== -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/tersesystems/ocapjsse/issues</url>
</issueManagement>
<inceptionYear>2018</inceptionYear>
<!-- ==================================================================== -->
<developers>
<developer>
<id>wsargent</id>
<name>Will Sargent</name>
<roles>
<role>Project Lead</role>
</roles>
<timezone>-8</timezone>
<url>https://github.com/wsargent</url>
</developer>
</developers>
<!-- ==================================================================== -->
<licenses>
<license>
<name>Apache 2-clause</name>
<url>https://raw.githubusercontent.com/tersesystems/ocapjsse/master/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<!-- MUST match what you have in .m2/settings.xml -->
<id>bintray-tersesystems-maven</id>
<name>tersesystems-maven</name>
<!--
Repo: maven (on bintray, create a repository of maven type)
Package: ocapjsse (on bintray, create a package under the repo section)
-->
<url>https://api.bintray.com/maven/tersesystems/maven/ocapjsse/;publish=1</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:[email protected]:tersesystems/ocapjsse.git</connection>
<developerConnection>scm:git:[email protected]:tersesystems/ocapjsse.git</developerConnection>
<url>[email protected]:tersesystems/ocapjsse.git</url>
<tag>HEAD</tag>
</scm>
<organization>
<name>tersesystems</name>
<url>https://tersesystems.com</url>
</organization>
<modules>
<module>forwarder</module>
<module>logging</module>
<module>revocable</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>