chaser-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>top.chaser</groupId>
<artifactId>chaser-framework</artifactId>
<version>B-1.0.3.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">
<modelVersion>4.0.0</modelVersion>
<groupId>top.chaser</groupId>
<artifactId>chaser-framework</artifactId>
<packaging>pom</packaging>
<version>B-1.0.3.RELEASE</version>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/chaser8/chaser-framework/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<tag>master</tag>
<url>git@github.com:chaser8/chaser-framework.git</url>
<connection>scm:git:git@github.com:chaser8/chaser-framework.git</connection>
<developerConnection>scm:git:git@github.com:chaser8/chaser-framework.git</developerConnection>
</scm>
<developers>
<developer>
<name>yangzb</name>
<email>chaser8@163.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<dependencies.version>${project.version}</dependencies.version>
</properties>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<showWarnings>false</showWarnings>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- <distributionManagement>-->
<!-- <repository>-->
<!-- <id>home-releases</id>-->
<!-- <url>http://yangzb.myds.me:18081/repository/releases/</url>-->
<!-- </repository>-->
<!-- <snapshotRepository>-->
<!-- <id>home-snapshots</id>-->
<!-- <url>http://yangzb.myds.me:18081/repository/snapshots/</url>-->
<!-- </snapshotRepository>-->
<!-- </distributionManagement>-->
<distributionManagement>
<repository>
<id>sonatype-nexus-release</id>
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>