2018-10-23 21:27:08 +00:00
|
|
|
<?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>
|
|
|
|
<groupId>fr.gasser</groupId>
|
|
|
|
<artifactId>java-cookbook</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>reflection</module>
|
2018-10-23 22:18:20 +00:00
|
|
|
<module>gui</module>
|
2018-10-23 22:18:51 +00:00
|
|
|
<module>async</module>
|
2018-12-28 18:18:47 +00:00
|
|
|
<module>lang</module>
|
2019-01-02 21:15:59 +00:00
|
|
|
<module>persistence</module>
|
2018-10-23 21:27:08 +00:00
|
|
|
</modules>
|
2019-10-19 15:43:47 +00:00
|
|
|
|
2018-10-23 21:27:08 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-10-19 15:43:47 +00:00
|
|
|
<maven.compiler.source>1.11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.11</maven.compiler.target>
|
|
|
|
<slf4j.version>1.7.28</slf4j.version>
|
2018-10-23 21:27:08 +00:00
|
|
|
</properties>
|
2018-10-23 22:18:20 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2019-10-19 15:43:47 +00:00
|
|
|
<version>${slf4j.version}</version>
|
2018-10-23 22:18:20 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2019-10-19 15:43:47 +00:00
|
|
|
<version>${slf4j.version}</version>
|
2018-10-23 22:18:20 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-10-23 21:27:08 +00:00
|
|
|
|
|
|
|
</project>
|