spack/var/spack/repos/builtin/packages/shiro/package.py
Harmen Stoppels b9e72557e8
Remove .99 from version ranges (#26422)
In most cases, .99 can be omitted thanks to #26402 .
2021-10-03 09:09:02 -04:00

24 lines
1010 B
Python

# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Shiro(MavenPackage):
"""Apache Shiro is a powerful and easy-to-use Java security framework
that performs authentication, authorization, cryptography, and session
management. With Shiro's easy-to-understand API, you can quickly and
easily secure any application - from the smallest mobile applications
to the largest web and enterprise applications."""
homepage = "https://shiro.apache.org/"
url = "https://github.com/apache/shiro/archive/shiro-root-1.6.0.tar.gz"
version('1.6.0', sha256='50338badfd3261076060fbe70330089512d38071bc51aa3f84ad23e707d2b7c9')
version('1.5.3', sha256='25c5d99eddf790969e0f80bd9769f773465c9c9e1e8ec1f549f476bdae8c6983')
depends_on('java@8:', type=('build', 'run'))
depends_on('maven@3.5:3', type='build')