-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom10.xml
More file actions
103 lines (94 loc) · 3.71 KB
/
pom10.xml
File metadata and controls
103 lines (94 loc) · 3.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
<!-- JDK 10 POM -->
<!-- (n).#.#.f-(v) -> v = TARGET JDK VERSION -->
<!-- (n).#.#.f -> TARGET JDK 7 -->
<project>
<modelVersion>4.0.0</modelVersion>
<!-- PROJECT DESCRIPTION -->
<groupId>host.fai.lib</groupId>
<artifactId>fainumber</artifactId>
<packaging>jar</packaging>
<name>faiNumber</name>
<version>1.0.0.f-10</version>
<description>A library that mainly deals with converting strings of number to a supported primitive data type, numerically validating strings or chars, numerically comparing strings, and converting a supported primitive data type to numerical strings.</description>
<url>https://lib.fai.org/java/faiNumber</url>
<inceptionYear>2019</inceptionYear>
<!-- END PROJECT DESCRIPTION -->
<!-- SCM -->
<scm>
<connection>scm:git:git://github.com/kevinhng86/Java-host.fai.lib.faiNumber.git</connection>
<developerConnection>scm:git:ssh://github.com:kevinhng86/Java-host.fai.lib.faiNumber.git</developerConnection>
<url>http://github.com/kevinhng86/Java-host.fai.lib.faiNumber/tree/master</url>
</scm>
<!-- END SCM -->
<!-- LICENSE -->
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
<comments>Copyright 2019 - Khang Hoang Nguyen.</comments>
</license>
</licenses>
<!-- END LICENSE -->
<!-- DEVELOPERS & CONTRIBUTORS -->
<developers>
<developer>
<id>kevin</id>
<name>Khang Hoang Nguyen</name>
<email>kevin@fai.host</email>
<organization>fai.host</organization>
</developer>
</developers>
<!-- END DEVELOPERS & CONTRIBUTORS -->
<properties>
<jdkTarget>10</jdkTarget>
<buildDesc>Java 10+</buildDesc>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>${jdkTarget}</maven.compiler.source>
<maven.compiler.target>${jdkTarget}</maven.compiler.target>
</properties>
<!-- Note: tests were not built with JUNIT, manual test. -->
<build>
<sourceDirectory>src/</sourceDirectory>
<directory>bin/</directory>
<testSourceDirectory>test/</testSourceDirectory>
<!-- RESOURCES -->
<resources>
<resource>
<directory>${project.basedir}</directory>
<includes>
<include>LICENSE</include>
<include>README.md</include>
</includes>
<targetPath>META-INF</targetPath>
</resource>
</resources>
<!-- END RESOURCES -->
<!-- MANIFEST INFO -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifestEntries>
<Build-Jdk>${java.version}</Build-Jdk>
<Build-Target-Jdk>${jdkTarget}</Build-Target-Jdk>
<Build-Desc>${buildDesc}</Build-Desc>
<Build-Timestamp>${maven.build.timestamp}</Build-Timestamp>
<Package-Name>${project.groupId}.${project.artifactId}</Package-Name>
<Package-Version>${project.version}</Package-Version>
<Project-Inception-Year>${project.inceptionYear}</Project-Inception-Year>
<Project-Desc>${project.description}</Project-Desc>
<Project-Repo-Home>https://github.com/kevinhng86/Java-host.fai.lib.faiNumber</Project-Repo-Home>
<Documentation>https://lib.fai.host/java/faiNumber/v1</Documentation>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
<!-- END MANIFEST INFO -->
</build>
</project>