forked from fridujo/glacio-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
80 lines (67 loc) · 2.67 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.github.fridujo</groupId>
<artifactId>glacio-examples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Glacio Examples</name>
<description>Example projects using Glacio</description>
<url>https://github.com/fridujo/glacio-examples</url>
<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>
<glacio.version>0.0.1-SNAPSHOT</glacio.version>
<spring-boot.version>2.1.1.RELEASE</spring-boot.version>
<junit.version>5.3.2</junit.version>
<assertj.version>3.11.1</assertj.version>
<mockito.version>2.23.4</mockito.version>
<hjson.version>3.0.0</hjson.version>
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
</properties>
<modules>
<module>junit-spring</module>
</modules>
<scm>
<url>https://github.com/fridujo/glacio-examples.git</url>
<connection>scm:git:ssh://[email protected]/fridujo/glacio-examples.git</connection>
<developerConnection>scm:git:ssh://[email protected]/fridujo/glacio-examples.git</developerConnection>
<tag>HEAD</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>
<developers>
<developer>
<id>ledoyen</id>
<name>Loïc Ledoyen</name>
<url>https://github.com/ledoyen</url>
<email>[email protected]</email>
</developer>
</developers>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>0</forkCount>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>Sonatype OSS snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>