spring-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.admin4j.spring</groupId>
<artifactId>spring-plugin</artifactId>
<version>0.12.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>com.admin4j</groupId>
<artifactId>framework</artifactId>
<version>0.12.0</version>
<relativePath></relativePath>
</parent>
<groupId>com.admin4j.spring</groupId>
<artifactId>spring-plugin</artifactId>
<version>0.12.0</version>
<name>spring-plugin</name>
<description>基于Spring实现,极轻巧的设计模式插件</description>
<url>https://github.com/admin4j/spring-plugin</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>admin4j</name>
<email>1218853253@qq.com</email>
<organization>https://github.com/admin4j</organization>
<timezone>+8</timezone>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:admin4j/spring-plugin</connection>
<developerConnection>scm:git@github.com:admin4j/spring-plugin</developerConnection>
<url>https://github.com/admin4j/spring-plugin</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>