wiki-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-all</artifactId> <version>1.0.11</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.framewiki</groupId> <artifactId>wiki-pom</artifactId> <version>1.0.11</version> <relativePath/> </parent> <artifactId>wiki-all</artifactId> <name>${project.artifactId}</name> <description>Wiki-Framework 为开发者而生;是一个功能丰富且易用的Java工具库,通过诸多实用工具类的使用,旨在帮助开发为快速搭建开发项目提供便利。</description> <url>https://github.com/cdkjframework/wiki-framework</url> <properties> <java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-core</artifactId> </dependency> <dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-constant</artifactId> </dependency> <dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-util</artifactId> </dependency> <dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-datasource</artifactId> </dependency> <dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-entity</artifactId> </dependency> <dependency> <groupId>com.framewiki</groupId> <artifactId>wiki-redis</artifactId> </dependency> </dependencies> <build> <plugins> <!--打包--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>*.properties</exclude> </excludes> </configuration> <executions> <execution> <phase>compile</phase> <!--<goals>--> <!--<goal>test-jar</goal>--> <!--</goals>--> </execution> </executions> </plugin> <!--源码打包--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <phase>compile</phase> <goals> <goal>jar-no-fork</goal> <!--<goal>test-jar</goal>--> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <!-- 绑定到打包阶段 --> <goals> <goal>jar</goal> <!-- 生成 Javadoc JAR 文件 --> </goals> </execution> </executions> <configuration> <source>17</source> <!-- 指定 JDK 版本 --> <!-- 关闭严格检查 --> <doclint>none</doclint> <outputDirectory>${project.build.directory}/apidocs</outputDirectory> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>cdkj Maven Repository</id> <name>cdkj Maven Repository</name> <url>https://packages.aliyun.com/maven/repository/2132815-release-WZ8rip/</url> <releases> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </releases> </repository> <repository> <!-- Maven 自带的中央仓库使用的Id为central 如果其他的仓库声明也是用该Id 就会覆盖中央仓库的配置 --> <id>mvnRepository</id> <name>mvnRepository</name> <url>https://maven.aliyun.com/repository/central</url> <releases> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <distributionManagement> <repository> <id>wiki</id> <layout>default</layout> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>