2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 07:44:43 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 08:52:24 -04:00
|
|
|
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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>algorithms-miscellaneous-5</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>algorithms-miscellaneous-5</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-05-20 10:59:14 -04:00
|
|
|
<artifactId>algorithms-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>${commons-codec.version}</version>
|
|
|
|
</dependency>
|
2019-11-19 02:24:38 -05:00
|
|
|
<dependency>
|
2020-05-01 10:34:19 -04:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
<version>${commons-math3.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>pl.allegro.finance</groupId>
|
|
|
|
<artifactId>tradukisto</artifactId>
|
|
|
|
<version>${tradukisto.version}</version>
|
|
|
|
</dependency>
|
2019-12-17 01:46:22 -05:00
|
|
|
<dependency>
|
2019-12-22 20:53:01 -05:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${guava.version}</version>
|
2019-12-17 01:46:22 -05:00
|
|
|
</dependency>
|
2023-02-07 09:42:21 -05:00
|
|
|
<!-- API, java.xml.bind module -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
<version>${xml-bind-api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Runtime, com.sun.xml.bind module -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
|
|
<version>${jaxb-runtime.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2023-02-07 09:42:21 -05:00
|
|
|
<properties>
|
|
|
|
<xml-bind-api.version>4.0.0</xml-bind-api.version>
|
|
|
|
<jaxb-runtime.version>4.0.0</jaxb-runtime.version>
|
|
|
|
</properties>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
</project>
|