PandaLib/pandalib-core/pom.xml

41 lines
1.3 KiB
XML
Raw Normal View History

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>
<repositories>
<repository>
<id>sonatype-oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
<id>opencollab-snapshot</id>
<url>https://repo.opencollab.dev/maven-snapshots/</url>
</repository>
</repositories>
2016-11-26 03:12:18 +01:00
<dependencies>
<dependency>
<groupId>fr.pandacube.lib</groupId>
<artifactId>pandalib-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>fr.pandacube.lib</groupId>
<artifactId>pandalib-chat</artifactId>
<version>${project.version}</version>
</dependency>
2016-11-26 03:12:18 +01:00
</dependencies>
</project>