stack-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.stackxx</groupId> <artifactId>stack-boot</artifactId> <version>1.0.34-RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.stackxx</groupId> <artifactId>stack-parent</artifactId> <version>1.0.8-RELEASE</version> <relativePath/> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.stackxx</groupId> <artifactId>stack-boot</artifactId> <version>1.0.34-RELEASE</version> <name>Stack Boot</name> <description>Stack Boot</description> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>com.foxinmy</groupId> <artifactId>weixin4j-base</artifactId> <exclusions> <exclusion> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.foxinmy</groupId> <artifactId>weixin4j-pay</artifactId> </dependency> <dependency> <groupId>com.foxinmy</groupId> <artifactId>weixin4j-mp</artifactId> </dependency> <dependency> <groupId>com.foxinmy</groupId> <artifactId>weixin4j-wxa</artifactId> </dependency> <dependency> <groupId>com.foxinmy</groupId> <artifactId>weixin4j-qy</artifactId> </dependency> <dependency> <groupId>com.foxinmy</groupId> <artifactId>weixin4j-server</artifactId> <exclusions> <exclusion> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-web-starter</artifactId> </dependency> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>com.aliyun</groupId> <artifactId>aliyun-java-sdk-core</artifactId> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml-schemas</artifactId> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> </dependency> <dependency> <groupId>com.aliyun.oss</groupId> <artifactId>aliyun-sdk-oss</artifactId> </dependency> <dependency> <groupId>com.huaweicloud</groupId> <artifactId>esdk-obs-java-bundle</artifactId> </dependency> <dependency> <groupId>com.qcloud</groupId> <artifactId>cos_api</artifactId> </dependency> <dependency> <groupId>com.qiniu</groupId> <artifactId>qiniu-java-sdk</artifactId> </dependency> <dependency> <groupId>com.upyun</groupId> <artifactId>java-sdk</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <deploymentName>stack-boot</deploymentName> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> <!-- <autoPublish>true</autoPublish>--> <!-- <waitUntil>published</waitUntil>--> </configuration> </plugin> </plugins> </build> <repositories> <!-- <repository>--> <!-- <id>github</id>--> <!-- <url>https://maven.pkg.github.com/stackxx/stack-parent</url>--> <!-- <snapshots>--> <!-- <enabled>true</enabled>--> <!-- </snapshots>--> <!-- </repository>--> <!-- <repository>--> <!-- <id>nexus</id>--> <!-- <url>http://101.43.97.41:8081/repository/maven-public</url>--> <!-- <snapshots>--> <!-- <enabled>true</enabled>--> <!-- </snapshots>--> <!-- </repository>--> </repositories> <distributionManagement> <!-- <repository>--> <!-- <id>github</id>--> <!-- <name>GitHub OWNER Apache Maven Packages</name>--> <!-- <url>https://maven.pkg.github.com/stackxx/stack-boot</url>--> <!-- </repository>--> <!-- <snapshotRepository>--> <!-- <id>nexus-snapshots</id>--> <!-- <url>http://101.43.97.41:8081/repository/maven-snapshots/</url>--> <!-- </snapshotRepository>--> <!-- <repository>--> <!-- <id>nexus-releases</id>--> <!-- <url>http://101.43.97.41:8081/repository/maven-releases/</url>--> <!-- </repository>--> </distributionManagement> </project>