Clients/Java/pom.xml

61 lines
2.0 KiB
XML
Raw Normal View History

2024-03-15 16:41:48 +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>
<scm>
2024-09-25 17:50:40 +00:00
<connection>scm:git:https://git.lona-development.org/Lona-Development/Clients.git</connection>
<developerConnection>scm:git:https://git.lona-development.org/Lona-Development/Clients.git</developerConnection>
<url>https://git.lona-development.org/Lona-Development/Clients</url>
2024-03-15 16:41:48 +00:00
</scm>
2024-10-08 08:07:17 +00:00
<groupId>org.lona_development.client</groupId>
<artifactId>lonadb</artifactId>
2024-10-08 08:07:17 +00:00
<version>3.0.0</version>
2024-03-15 16:41:48 +00:00
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2024-09-25 17:50:40 +00:00
<version>2.15.0</version>
2024-03-15 16:41:48 +00:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
2024-10-08 08:07:17 +00:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20210307</version>
</dependency>
2024-03-15 16:41:48 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
2024-09-25 17:50:40 +00:00
<url>https://maven.pkg.github.com/Lona-Development/Clients</url>
</repository>
</distributionManagement>
2024-03-15 16:41:48 +00:00
</project>