2022-07-22 17:10:34 +02: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"
|
2016-11-26 03:12:18 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
2021-03-21 12:53:43 +01:00
|
|
|
<artifactId>pandalib-parent</artifactId>
|
2022-07-22 17:10:34 +02:00
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
2021-03-21 12:53:43 +01:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-07-22 17:10:34 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2016-11-26 03:12:18 +01:00
|
|
|
</parent>
|
2022-07-22 17:10:34 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-11-26 03:12:18 +01:00
|
|
|
|
2021-03-21 12:53:43 +01:00
|
|
|
<artifactId>pandalib-core</artifactId>
|
2016-11-26 03:12:18 +01:00
|
|
|
<packaging>jar</packaging>
|
2021-07-09 00:27:59 +02:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-oss-snapshots</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2021-09-09 17:24:02 +02:00
|
|
|
<repository>
|
|
|
|
<id>opencollab-snapshot</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
|
|
</repository>
|
2021-07-09 00:27:59 +02:00
|
|
|
</repositories>
|
2016-11-26 03:12:18 +01:00
|
|
|
|
|
|
|
<dependencies>
|
2016-11-26 19:00:43 +01:00
|
|
|
<dependency>
|
2022-07-20 13:18:57 +02:00
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2016-11-26 19:00:43 +01:00
|
|
|
</dependency>
|
2022-07-20 13:18:57 +02:00
|
|
|
|
2021-07-09 00:27:59 +02:00
|
|
|
<dependency>
|
2022-07-20 13:18:57 +02:00
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-chat</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-12-19 16:43:46 +01:00
|
|
|
|
|
|
|
<!-- Cron expression interpreter -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.eitchnet</groupId>
|
|
|
|
<artifactId>cron</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
2016-11-26 03:12:18 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|