on-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>on-security</artifactId>
<version>0.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2022 恒宇少年
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.minbox.framework</groupId>
<artifactId>minbox-parent</artifactId>
<version>1.1.0</version>
<relativePath></relativePath>
</parent>
<groupId>org.minbox.framework</groupId>
<artifactId>on-security</artifactId>
<version>0.1.1</version>
<packaging>pom</packaging>
<name>On-Security ${project.version}</name>
<description>基于Spring Security编写,支持OpenID Connect 1.0、OAuth 2.1协议规范的统一安全认证、SSO单点登录框架。</description>
<url>https://github.com/On-Security/on-security</url>
<inceptionYear>2022</inceptionYear>
<organization>
<name>On-Security</name>
<url>https://github.com/On-Security</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>common-dependencies</module>
<module>bom</module>
<module>core</module>
<module>console</module>
<module>open-api</module>
<module>authorization-server</module>
<module>federal-identity</module>
<module>application-service</module>
<module>manage-api</module>
</modules>
<issueManagement>
<system>github</system>
<url>https://github.com/On-Security/on-security/issues</url>
</issueManagement>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>0.1.1</revision>
</properties>
<repositories>
<repository>
<id>aliyun</id>
<url>https://maven.aliyun.com/repository/central</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</build>
</project>