xrss-sentinel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.liux1663</groupId> <artifactId>xrss-sentinel</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <!-- <parent>--> <!-- <artifactId>remote-sensing-server-maven-central</artifactId>--> <!-- <groupId>com.xrss</groupId>--> <!-- <version>3.8.7</version>--> <!-- </parent>--> <!-- <modelVersion>4.0.0</modelVersion>--> <!-- <artifactId>xrss-sentinel</artifactId>--> <modelVersion>4.0.0</modelVersion> <groupId>io.github.liux1663</groupId> <artifactId>xrss-sentinel</artifactId> <version>1.0.1</version> <description> Sentinel Service entrance </description> <url>https://github.com/Liux1663/xrss-maven</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Liux1663</name> <email>Liux1663@163.com</email> </developer> </developers> <scm> <connection>scm:git@github.com:Liux1663/xrss-maven.git</connection> <developerConnection>scm:git:ssh://github.com:Liux1663/xrss-maven.git</developerConnection> <url>http://github.com:Liux1663/xrss-maven/tree/master</url> </scm> <distributionManagement> <repository> <id>central</id> <name>central-releases</name> <url>https://s01.oss.sonatype.org/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.28</version> <scope>compile</scope> </dependency> <dependency> <groupId>nl.pdok</groupId> <artifactId>geoserver-manager</artifactId> <version>1.7.0-pdok2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <version>2.0.43</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.3.27</version> </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> <configuration> <useStandardDocletOptions>false</useStandardDocletOptions> <encoding>UTF-8</encoding> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> <!-- 其他可能的自定义选项 --> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <configuration> <executable>C:\Program Files (x86)\GnuPG\bin\gpg.exe</executable> </configuration> <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> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </project>