dinodev-spring-assembly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.dinodev</groupId> <artifactId>dinodev-spring-assembly</artifactId> <version>3.3.2</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> <groupId>cn.dinodev</groupId> <artifactId>dinodev-spring-assembly</artifactId> <version>3.3.2</version> <name>dino-spring-assembly</name> <description>打包及运行组件</description> <url>https://dinodev.cn/</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> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <licenses> <license> <name>Apache-2.0 License</name> <url>https://opensource.org/licenses/Apache-2.0</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/dino-proj/dino-spring.git</connection> <developerConnection>scm:git:https://github.com/dino-proj/dino-spring.git</developerConnection> <url>https://github.com/dino-proj/dino-spring</url> </scm> <developers> <developer> <name>Cody Lu</name> <email>tuuboo@gmail.com</email> </developer> </developers> <profiles> <profile> <id>publish</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>${env.DEPLOY_AUTO_PUBLISH}</autoPublish> <waitUntil>${env.DEPLOY_WAIT_UNTIL}</waitUntil> <deploymentName>${project.artifactId}-${project.version}</deploymentName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>