lubase-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.lubase</groupId> <artifactId>lubase-core</artifactId> <version>1.5.16</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>lubase-core</artifactId> <version>1.5.16</version> <name>lubase-core</name> <description>lubase-core</description> <packaging>jar</packaging> <url>https://lubase.cn</url> <scm> <connection>https://gitee.com/lubase/lu-base.git</connection> <developerConnection>scm:git:ssh://git@gitee.com:lubase/lu-base.git </developerConnection> <url>https://gitee.com/lubase/lu-base</url> </scm> <parent> <artifactId>lubase</artifactId> <groupId>io.github.lubase</groupId> <version>1.3.0</version> </parent> <dependencies> <dependency> <groupId>io.github.lubase</groupId> <artifactId>lubase-orm</artifactId> <version>1.4.9</version> </dependency> <dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</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-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>3.4.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>3.5.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.4.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-loader</artifactId> </dependency> <dependency> <groupId>com.google.collections</groupId> <artifactId>google-collections</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>3.1.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <excludes> <exclude>*.yml</exclude> <exclude>*.yaml</exclude> <exclude>templates/</exclude> <exclude>lib/</exclude> <exclude>.idea/</exclude> </excludes> <!-- <archive> --> <!-- <manifest>--> <!-- <mainClass>com.lubase.core.LubaseCoreApplication</mainClass>--> <!-- <addClasspath>true</addClasspath>--> <!-- <classpathPrefix>lib/</classpathPrefix>--> <!-- </manifest>--> <!-- <manifestEntries>--> <!-- <Class-Path>lib/private-sdk-4.1.3.jar lib/gwm-open-sdk-1.0.6.jar</Class-Path>--> <!-- <Hello-abc>test</Hello-abc>--> <!-- </manifestEntries>--> <!-- </archive>--> </configuration> </plugin> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-dependency-plugin</artifactId>--> <!-- <version>2.8</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>copy</id>--> <!-- <phase>package</phase>--> <!-- <goals>--> <!-- <goal>copy-dependencies</goal>--> <!-- </goals>--> <!-- <configuration>--> <!-- <outputDirectory>--> <!-- ${project.build.directory}/lib--> <!-- </outputDirectory>--> <!-- </configuration>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- 以下配置用于打个fat包,用于启动--> <!-- <plugin>--> <!-- <groupId>org.springframework.boot</groupId>--> <!-- <artifactId>spring-boot-maven-plugin</artifactId>--> <!-- <configuration>--> <!-- <mainClass>com.lcp.qibao.QibaoApplication</mainClass>--> <!-- <includeSystemScope>true</includeSystemScope>--> <!-- <excludes>--> <!-- <exclude>--> <!-- <groupId>net.sf.ehcache</groupId>--> <!-- <artifactId>ehcache</artifactId>--> <!-- </exclude>--> <!-- </excludes>--> <!-- </configuration>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>repackage</id>--> <!-- <goals>--> <!-- <goal>repackage</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!--以下配置用于将项目安装到本地仓库--> </plugins> </build> </project>