This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.0.X in repository https://gitbox.apache.org/repos/asf/mina.git
The following commit(s) were added to refs/heads/2.0.X by this push: new 456cfc6ff Use SPDX identifier for license name 456cfc6ff is described below commit 456cfc6ff4993588cc1dbc971a68f03a08cc0266 Author: emmanuel lecharny <elecha...@apache.org> AuthorDate: Thu Oct 5 09:28:54 2023 +0200 Use SPDX identifier for license name --- pom.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2b9843188..4eef1a092 100644 --- a/pom.xml +++ b/pom.xml @@ -79,7 +79,7 @@ <licenses> <license> <name>Apache 2.0 License</name> - <url>https://www.apache.org/licenses/LICENSE-2.0</url> + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> @@ -143,6 +143,7 @@ <!-- Jars --> <version.easymock>2.5.2</version.easymock> <version.jboss.javassist>3.8.0.GA</version.jboss.javassist> + <version.jdom>1.0</version.jdom> <version.jmock>1.2.0</version.jmock> <version.junit>4.13.2</version.junit> <version.jzlib>1.1.3</version.jzlib> @@ -288,11 +289,20 @@ <version>${version.jboss.javassist}</version> </dependency> + <dependency> + <groupId>jdom</groupId> + <artifactId>jdom</artifactId> + <version>${version.jdom}</version> + <optional>true</optional> + <scope>test</scope> + </dependency> + <dependency> <groupId>jmock</groupId> <artifactId>jmock</artifactId> <version>${version.jmock}</version> <optional>true</optional> + <scope>test</scope> </dependency> <dependency>