-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
98 lines (88 loc) · 2.85 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
<?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.seudev</groupId>
<artifactId>oss-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>infinity-utils</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Infinity Utils</name>
<description>A library with functionalities that are frequently necessary for make bigger something.</description>
<url>http://infinity-utils.seudev.com</url>
<inceptionYear>2018</inceptionYear>
<organization>
<name>Seudev</name>
<url>https://seudev.com</url>
</organization>
<developers>
<developer>
<id>ThomasSousa96</id>
<name>Thomás Sousa Silva</name>
<email>thomas@seudev.com</email>
<url>http://thomas.seudev.com</url>
<organization>Seudev</organization>
<organizationUrl>https://seudev.com</organizationUrl>
<roles>
<role>Founder</role>
<role>Chief Executive Officer</role>
<role>Developer</role>
</roles>
<timezone>America/Recife</timezone>
<properties>
<picUrl>https://seudev.com/img/member/ThomasSousa96.jpeg</picUrl>
</properties>
</developer>
</developers>
<scm>
<url>https://github.com/seudev/infinity-utils</url>
<connection>scm:git:https://github.com/seudev/infinity-utils.git</connection>
<developerConnection>scm:git:https://github.com/seudev/infinity-utils.git</developerConnection>
<tag>master</tag>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<java.version>1.8</java.version>
<source.encoding>UTF-8</source.encoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>${source.encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${source.encoding}</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>1.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.1-b06</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>