mirror of
https://github.com/ehlxr/maven-repository.git
synced 2024-11-24 10:43:42 +00:00
init git maven repository
This commit is contained in:
parent
9e8cc851a4
commit
b6835de4f9
@ -0,0 +1,198 @@
|
||||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>io.github.ehlxr</groupId>
|
||||
<artifactId>did-parent</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<modules>
|
||||
<module>did-server</module>
|
||||
<module>did-sdk</module>
|
||||
<module>did-common</module>
|
||||
<module>did-core</module>
|
||||
</modules>
|
||||
|
||||
<name>did-parent</name>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<!--目标编译的 Java 版本可以通过以下属性指定,不用配置 maven-compiler-plugin 插件-->
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<did.version>1.1.0-SNAPSHOT</did.version>
|
||||
|
||||
<netty.version>4.1.58.Final</netty.version>
|
||||
<logback.version>1.1.7</logback.version>
|
||||
<junit.version>4.13.1</junit.version>
|
||||
<jackson.version>2.10.3</jackson.version>
|
||||
<protostuff.version>1.7.2</protostuff.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-all</artifactId>
|
||||
<version>${netty.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
<version>${logback.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${junit.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.github.ehlxr</groupId>
|
||||
<artifactId>did-common</artifactId>
|
||||
<version>${did.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.github.ehlxr</groupId>
|
||||
<artifactId>did-core</artifactId>
|
||||
<version>${did.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.protostuff</groupId>
|
||||
<artifactId>protostuff-core</artifactId>
|
||||
<version>${protostuff.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.protostuff</groupId>
|
||||
<artifactId>protostuff-runtime</artifactId>
|
||||
<version>${protostuff.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<!--<dependencies>-->
|
||||
<!-- 为了 debug 调试-->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>com.github.github</groupId>-->
|
||||
<!-- <artifactId>site-maven-plugin</artifactId>-->
|
||||
<!-- <version>0.12</version>-->
|
||||
<!-- </dependency>-->
|
||||
<!--</dependencies>-->
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
<configuration>
|
||||
<altDeploymentRepository>maven.repo::default::file://${project.build.directory}/mvn-repo
|
||||
</altDeploymentRepository>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.2.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<!-- Deploy the web site -->
|
||||
<groupId>com.github.github</groupId>
|
||||
<artifactId>site-maven-plugin</artifactId>
|
||||
<version>0.12</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
<!-- select the Maven phase in which the plugin will be executed -->
|
||||
<phase>deploy</phase>
|
||||
<configuration>
|
||||
<!-- Plugin configuration goes here -->
|
||||
<userName>ehlxr</userName>
|
||||
<!--suppress UnresolvedMavenProperty -->
|
||||
<password>${env.GITHUB_MVN_TOKEN}</password>
|
||||
<!-- The commit message -->
|
||||
<message>init git maven repository</message>
|
||||
<!-- The location where the site is uploaded -->
|
||||
<repositoryName>maven-repository</repositoryName> <!-- github repo name -->
|
||||
<repositoryOwner>ehlxr</repositoryOwner> <!-- organization or user name -->
|
||||
<!-- Use merge or override the content -->
|
||||
<merge>true</merge>
|
||||
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
|
||||
<branch>refs/heads/main</branch>
|
||||
<!--<includes>-->
|
||||
<!-- <include>**/*</include>-->
|
||||
<!--</includes>-->
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>com.github.github</groupId>
|
||||
<artifactId>site-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>maven.repo</id>
|
||||
<name>Local Staging Repository</name>
|
||||
<url>file://${project.build.directory}/mvn-repo</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<!--<distributionManagement>-->
|
||||
<!-- <repository>-->
|
||||
<!-- <id>github</id>-->
|
||||
<!-- <name>GitHub Apache Maven Packages</name>-->
|
||||
<!-- <url>https://maven.pkg.github.com/ehlxr/mvn-repository</url>-->
|
||||
<!-- </repository>-->
|
||||
<!--</distributionManagement>-->
|
||||
|
||||
</project>
|
@ -0,0 +1 @@
|
||||
efac8a4ab647f6c3bd1c83bb358e81df
|
@ -0,0 +1 @@
|
||||
e113877c7f7b584a27fa0b21161fd02e4a85ca95
|
@ -5,15 +5,15 @@
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<versioning>
|
||||
<snapshot>
|
||||
<timestamp>20210211.031311</timestamp>
|
||||
<timestamp>20210213.025916</timestamp>
|
||||
<buildNumber>1</buildNumber>
|
||||
</snapshot>
|
||||
<lastUpdated>20210211031311</lastUpdated>
|
||||
<lastUpdated>20210213025916</lastUpdated>
|
||||
<snapshotVersions>
|
||||
<snapshotVersion>
|
||||
<extension>pom</extension>
|
||||
<value>1.1.0-20210211.031311-1</value>
|
||||
<updated>20210211031311</updated>
|
||||
<value>1.1.0-20210213.025916-1</value>
|
||||
<updated>20210213025916</updated>
|
||||
</snapshotVersion>
|
||||
</snapshotVersions>
|
||||
</versioning>
|
||||
|
@ -1 +1 @@
|
||||
a1bd9be6e4055567a6f319703fc202cf
|
||||
1a73d64573f70c6f4cab9d1d95e90da2
|
@ -1 +1 @@
|
||||
64b961656b989dc68acb94da774de123ac65c261
|
||||
7233f939049d941eb41176464c26cd9ebe57396e
|
@ -6,6 +6,6 @@
|
||||
<versions>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</versions>
|
||||
<lastUpdated>20210211031311</lastUpdated>
|
||||
<lastUpdated>20210213025916</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
||||
|
@ -1 +1 @@
|
||||
5268d7e7fb0f5897fb6144ebaaa3b2ea
|
||||
73a24c79cbe49421668035843e04e573
|
@ -1 +1 @@
|
||||
aad0bab5f06e7f5a01e33664e96be6d6946fceaa
|
||||
9915f149209c2bd1a48c5876080a0dec694fba4f
|
Loading…
Reference in New Issue
Block a user