提交 e4e7efb6 编写于 作者: sinat_25235033's avatar sinat_25235033

add center maven config

上级 37b65944
......@@ -4,8 +4,8 @@
## <font color="green">Introduction</font>
> `sureness` 是面对`restful api`的鉴权`java`实现,在使用`shiro`过程中吸取其良好的设计加上一些自己想法实现的.
其功能比较单一,基于`RABC`主要关注于对`restful api`保护
> `sureness` 是在使用`java`权限框架`shiro`过程中吸取其良好的设计加上一些自己想法实现的,面对`restful api`的认证鉴权,基于`RABC`主要关注于对`restful api`的保护
`sureness`的低配置,易扩展,不耦合其他框架,能使开发者对自己的项目多场景快速安全的进行保护
仓库的组成部分:
- [sureness的核心代码--sureness-core](core)
......
......@@ -10,6 +10,36 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>sureness-core</artifactId>
<name>sureness</name>
<url>https://github.com/tomsun28/sureness</url>
<description>The Protection For Restful Api</description>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>tomsun28</name>
<email>tomsun28@outlook.com</email>
<organization>usthe</organization>
<organizationUrl>usthe.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>
scm:git:https://github.com/tomsun28/sureness.git
</connection>
<developerConnection>
scm:git:https://github.com/tomsun28/sureness.git
</developerConnection>
<url>https://github.com/tomsun28/sureness</url>
<tag>0.0.1</tag>
</scm>
<properties>
<slf4j.version>1.7.21</slf4j.version>
......@@ -62,7 +92,45 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>tom</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>tom</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册