-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
147 lines (136 loc) · 4.73 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<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>
<groupId>com.tools20022</groupId>
<artifactId>tools20022-api-cards</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Java API for ISO 20022 - Cards business domain</description>
<url>https://tools20022.com</url>
<licenses>
<license>
<name>The GNU Lesser General Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<developers>
<developer>
<name>László Bukodi</name>
<email>bukodi@tools20022.com</email>
<organization>Tools200222</organization>
<organizationUrl>https://tools20022.com</organizationUrl>
<timezone>Europe/Budapest</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/tools20022/tools20022-api-cards.git</connection>
<developerConnection>scm:git:ssh://github.com:tools20022/tools20022-api-cards.git</developerConnection>
<url>http://github.com/tools20022/tools20022-api-cards/tree/master</url>
</scm>
<build>
<plugins>
<!-- Add source and javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<fork>true</fork>
<meminitial>1024m</meminitial>
<maxmem>4096m</maxmem>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<links>
<link>http://docs.oracle.com/javase/8/docs/api</link>
</links>
<additionalparam>--allow-script-in-comments -Xdoclint:none</additionalparam>
<additionalJOption>-J-Xmx4096m</additionalJOption>
<!-- GA Tracking code -->
<header>
<![CDATA[
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103231116-1', 'auto');
ga('send', 'pageview');
</script>
]]>
</header>
<footer></footer>
<bottom><![CDATA[This software is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html">GPL</a> | Copyright 2017, <a href="https://tools20022.com">Tools20022<a>, László Bukodi | (Commercial licence also available)]]></bottom>
<doctitle>Java API for ISO 20022</doctitle>
<subpackages>com.tools20022.core:com.tools20022.metamodel:com.tools20022.repository</subpackages>
<groups>
<group>
<title>Core Packages</title>
<packages>com.tools20022.core*</packages>
</group>
<group>
<title>Metamodel Packages</title>
<packages>com.tools20022.metamodel*</packages>
</group>
<group>
<title>eRepository Packages</title>
<packages>com.tools20022.repository*</packages>
</group>
</groups>
<keywords>true</keywords>
<show>public</show>
<docfilessubdirs>true</docfilessubdirs>
<quiet>true</quiet>
<nohelp>true</nohelp>
<splitindex>true</splitindex>
<quiet>true</quiet>
<validateLinks>true</validateLinks>
<version>${project.version}</version>
<windowtitle>Tools20022 - Java API for ISO 20022</windowtitle>
<validateLinks>true</validateLinks>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<argLine>-Xmx4069m</argLine>
<!-- Force alphabetical order to have a reproducible build -->
<runOrder>alphabetical</runOrder>
</configuration>
</plugin>
</plugins>
</build>
</project>