summaryrefslogtreecommitdiff
path: root/dev-java/xmlunit-core
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-03-26 09:02:29 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-03-26 09:02:29 +0000
commit2fc33273150b3b4dd196028483446c6ee98cee2d (patch)
treeea3b0df33042ef40fe1efc79369f61352d6d0bf1 /dev-java/xmlunit-core
parent6d02d2a34f1f9fab7c0997458e000437629755dd (diff)
downloadbaldeagleos-repo-2fc33273150b3b4dd196028483446c6ee98cee2d.tar.gz
baldeagleos-repo-2fc33273150b3b4dd196028483446c6ee98cee2d.tar.xz
baldeagleos-repo-2fc33273150b3b4dd196028483446c6ee98cee2d.zip
Adding metadata
Diffstat (limited to 'dev-java/xmlunit-core')
-rw-r--r--dev-java/xmlunit-core/Manifest1
-rw-r--r--dev-java/xmlunit-core/metadata.xml9
-rw-r--r--dev-java/xmlunit-core/xmlunit-core-2.9.1.ebuild57
3 files changed, 67 insertions, 0 deletions
diff --git a/dev-java/xmlunit-core/Manifest b/dev-java/xmlunit-core/Manifest
new file mode 100644
index 000000000000..db73d721a992
--- /dev/null
+++ b/dev-java/xmlunit-core/Manifest
@@ -0,0 +1 @@
+DIST xmlunit-2.9.1-src.tar.gz 681721 BLAKE2B 8e8d40e79890d9bec2a3a72a9931cba1c832438e713eb290867a2d95d3ca5a8092327611998075cf1e0117b747563f178b52f3c6435fc0f57c08a94d7240d104 SHA512 147c3868098b526895059b12a1cb692d774f4734fac94069e72a8c61109f8a3bfd7846d7f2596bf7c10dfb1a379185f73a4a0066076fc64a8577b90da8623acf
diff --git a/dev-java/xmlunit-core/metadata.xml b/dev-java/xmlunit-core/metadata.xml
new file mode 100644
index 000000000000..a63267abaf71
--- /dev/null
+++ b/dev-java/xmlunit-core/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>java@gentoo.org</email>
+ </maintainer>
+
+ <origin>gentoo-staging</origin>
+</pkgmetadata> \ No newline at end of file
diff --git a/dev-java/xmlunit-core/xmlunit-core-2.9.1.ebuild b/dev-java/xmlunit-core/xmlunit-core-2.9.1.ebuild
new file mode 100644
index 000000000000..0ce19e461751
--- /dev/null
+++ b/dev-java/xmlunit-core/xmlunit-core-2.9.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="org.xmlunit:xmlunit-core:${PV}"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="XMLUnit for Java"
+HOMEPAGE="https://www.xmlunit.org/"
+SRC_URI="https://github.com/xmlunit/xmlunit/releases/download/v${PV}/xmlunit-${PV}-src.tar.gz"
+S="${WORKDIR}/xmlunit-${PV}-src/xmlunit-core"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64"
+
+CP_DEPEND="
+ dev-java/jaxb-api:2
+"
+
+DEPEND="
+ >=virtual/jdk-1.8:*
+ dev-java/jaxb-runtime:2
+ ${CP_DEPEND}
+ test? (
+ dev-java/hamcrest:0
+ dev-java/istack-commons-runtime:3
+ dev-java/mockito:4
+ )
+"
+
+RDEPEND="
+ >=virtual/jre-1.8:*
+ ${CP_DEPEND}
+"
+
+DOCS=( ../{CONTRIBUTING,HELP_WANTED,README,RELEASE_NOTES}.md )
+
+JAVA_AUTOMATIC_MODULE_NAME="org.xmlunit"
+JAVA_CLASSPATH_EXTRA="jaxb-runtime-2"
+JAVA_SRC_DIR="src/main/java"
+
+JAVA_TEST_EXCLUDES=(
+ # org.junit.runners.model.InvalidTestClassError: Invalid test class
+ org.xmlunit.TestResources
+)
+JAVA_TEST_GENTOO_CLASSPATH="
+ hamcrest
+ istack-commons-runtime-3
+ junit-4
+ mockito-4
+"
+JAVA_TEST_SRC_DIR="src/test/java"