gentoo-ebuilds/dev-java/jackson-annotations/jackson-annotations-2.20.ebuild
Arthur Zamarin 57e2bdc798
dev-java/jackson-annotations: Stabilize 2.20 ppc64, #966123
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-11-24 20:40:37 +02:00

29 lines
874 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source test"
JAVA_TESTING_FRAMEWORKS="junit-jupiter"
inherit java-pkg-2 java-pkg-simple junit5
DESCRIPTION="Core annotations used for value types, used by Jackson data binding package."
HOMEPAGE="https://github.com/FasterXML/jackson-annotations"
SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz"
S="${WORKDIR}/${PN}-${P}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm64 ppc64"
DEPEND=">=virtual/jdk-11:*" # module-info
RDEPEND=">=virtual/jre-1.8:*"
DOCS=( {README,SECURITY}.md release-notes/VERSION-2.x )
JAVA_INTERMEDIATE_JAR_NAME="com.fasterxml.jackson.annotation"
JAVA_RELEASE_SRC_DIRS=( ["9"]="src/moditect" )
JAVA_RESOURCE_DIRS="src/main/resources"
JAVA_SRC_DIR="src/main/java"
JAVA_TEST_SRC_DIR="src/test/java"