|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <artifactId>libraries-apache-commons</artifactId> |
| 6 | + <name>libraries-apache-commons</name> |
| 7 | + |
| 8 | + <parent> |
| 9 | + <artifactId>parent-modules</artifactId> |
| 10 | + <groupId>com.baeldung</groupId> |
| 11 | + <version>1.0.0-SNAPSHOT</version> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <dependencies> |
| 15 | + <dependency> |
| 16 | + <groupId>org.assertj</groupId> |
| 17 | + <artifactId>assertj-core</artifactId> |
| 18 | + <version>${assertj.version}</version> |
| 19 | + </dependency> |
| 20 | + <dependency> |
| 21 | + <groupId>commons-beanutils</groupId> |
| 22 | + <artifactId>commons-beanutils</artifactId> |
| 23 | + <version>${commons-beanutils.version}</version> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>org.apache.commons</groupId> |
| 27 | + <artifactId>commons-lang3</artifactId> |
| 28 | + <version>${commons-lang.version}</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.apache.commons</groupId> |
| 32 | + <artifactId>commons-text</artifactId> |
| 33 | + <version>${commons-text.version}</version> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>commons-io</groupId> |
| 37 | + <artifactId>commons-io</artifactId> |
| 38 | + <version>${commons.io.version}</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>commons-chain</groupId> |
| 42 | + <artifactId>commons-chain</artifactId> |
| 43 | + <version>${commons-chain.version}</version> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.apache.commons</groupId> |
| 47 | + <artifactId>commons-csv</artifactId> |
| 48 | + <version>${commons-csv.version}</version> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>commons-dbutils</groupId> |
| 52 | + <artifactId>commons-dbutils</artifactId> |
| 53 | + <version>${commons.dbutils.version}</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.apache.commons</groupId> |
| 57 | + <artifactId>commons-math3</artifactId> |
| 58 | + <version>${common-math3.version}</version> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>commons-net</groupId> |
| 62 | + <artifactId>commons-net</artifactId> |
| 63 | + <version>${commons-net.version}</version> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>com.h2database</groupId> |
| 67 | + <artifactId>h2</artifactId> |
| 68 | + <version>${h2.version}</version> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.knowm.xchart</groupId> |
| 72 | + <artifactId>xchart</artifactId> |
| 73 | + <version>${xchart-version}</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.apache.commons</groupId> |
| 77 | + <artifactId>commons-collections4</artifactId> |
| 78 | + <version>${commons.collections.version}</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.hamcrest</groupId> |
| 82 | + <artifactId>java-hamcrest</artifactId> |
| 83 | + <version>${org.hamcrest.java-hamcrest.version}</version> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + </dependencies> |
| 88 | + |
| 89 | + <properties> |
| 90 | + <commons-lang.version>3.6</commons-lang.version> |
| 91 | + <commons-text.version>1.1</commons-text.version> |
| 92 | + <commons-beanutils.version>1.9.3</commons-beanutils.version> |
| 93 | + <commons-chain.version>1.2</commons-chain.version> |
| 94 | + <commons-csv.version>1.4</commons-csv.version> |
| 95 | + <assertj.version>3.6.2</assertj.version> |
| 96 | + <commons.io.version>2.5</commons.io.version> |
| 97 | + <commons.dbutils.version>1.6</commons.dbutils.version> |
| 98 | + <h2.version>1.4.196</h2.version> |
| 99 | + <commons.collections.version>4.1</commons.collections.version> |
| 100 | + <junit.version>4.12</junit.version> |
| 101 | + <org.hamcrest.java-hamcrest.version>2.0.0.0</org.hamcrest.java-hamcrest.version> |
| 102 | + <commons-codec-version>1.10.L001</commons-codec-version> |
| 103 | + <xchart-version>3.5.2</xchart-version> |
| 104 | + <commons-net.version>3.6</commons-net.version> |
| 105 | + <hamcrest-all.version>1.3</hamcrest-all.version> |
| 106 | + <common-math3.version>3.6.1</common-math3.version> |
| 107 | + </properties> |
| 108 | + |
| 109 | +</project> |
0 commit comments