Skip to content

Commit b135b3f

Browse files
committed
Maven artifacts for 1.0-SNAPSHOT
0 parents  commit b135b3f

13 files changed

+148
-0
lines changed

.nojekyll

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6a94b01844e82865a4b6307692f6df84
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a2510f6812c8af93cd4e745df0626685ee538eab
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>luna-commons</artifactId>
7+
<groupId>com.luna</groupId>
8+
<version>1.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>luna-commons-tencent</artifactId>
13+
14+
<repositories>
15+
<repository>
16+
<id>luna-commons-mvn-repo</id>
17+
<url>https://raw.github.com/czy1024/luna-commons/mvn-repo-luna-commons-tencent/</url>
18+
<snapshots>
19+
<enabled>true</enabled>
20+
<updatePolicy>always</updatePolicy>
21+
</snapshots>
22+
</repository>
23+
</repositories>
24+
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.luna</groupId>
28+
<artifactId>luna-commons-common</artifactId>
29+
<version>1.0-SNAPSHOT</version>
30+
</dependency>
31+
32+
<!-- 腾讯Api-->
33+
<dependency>
34+
<groupId>com.tencentcloudapi</groupId>
35+
<artifactId>tencentcloud-sdk-java</artifactId>
36+
<version>3.1.46</version>
37+
<exclusions>
38+
<exclusion>
39+
<groupId>org.slf4j</groupId>
40+
<artifactId>slf4j-simple</artifactId>
41+
</exclusion>
42+
</exclusions>
43+
</dependency>
44+
</dependencies>
45+
46+
<distributionManagement>
47+
<repository>
48+
<id>luna.repo</id>
49+
<name>Temporary Staging Repository</name>
50+
<url>file://${project.build.directory}/mvn-repo</url>
51+
</repository>
52+
</distributionManagement>
53+
54+
<build>
55+
<plugins>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-compiler-plugin</artifactId>
59+
<version>3.8.1</version>
60+
<configuration>
61+
<source>8</source>
62+
<target>8</target>
63+
</configuration>
64+
</plugin>
65+
66+
<plugin>
67+
<artifactId>maven-deploy-plugin</artifactId>
68+
<version>2.8.1</version>
69+
<configuration>
70+
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo
71+
</altDeploymentRepository>
72+
</configuration>
73+
</plugin>
74+
75+
<plugin>
76+
<groupId>com.github.github</groupId>
77+
<artifactId>site-maven-plugin</artifactId>
78+
<version>0.12</version>
79+
<configuration>
80+
<message>Maven artifacts for ${project.version}</message> <!-- git commit message -->
81+
<noJekyll>true</noJekyll> <!-- disable webpage processing -->
82+
<outputDirectory>${project.build.directory}/mvn-repo
83+
</outputDirectory> <!-- matches distribution management repository url above -->
84+
<branch>refs/heads/mvn-repo-luna-commons-tencent
85+
</branch> <!-- remote branch name -->
86+
<includes>
87+
<include>**/*</include>
88+
</includes>
89+
<repositoryName>luna-commons</repositoryName> <!-- github repo name -->
90+
<repositoryOwner>czy1024</repositoryOwner> <!-- github username -->
91+
</configuration>
92+
<executions>
93+
<!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
94+
<execution>
95+
<goals>
96+
<goal>site</goal>
97+
</goals>
98+
<phase>deploy</phase>
99+
</execution>
100+
</executions>
101+
</plugin>
102+
</plugins>
103+
</build>
104+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4d3938356ffa99e33e8af6ec52776cbc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a2f1ea774588932de1b271eaaf2f0ba00b0395fe
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata modelVersion="1.1.0">
3+
<groupId>com.luna</groupId>
4+
<artifactId>luna-commons-tencent</artifactId>
5+
<version>1.0-SNAPSHOT</version>
6+
<versioning>
7+
<snapshot>
8+
<timestamp>20200716.140456</timestamp>
9+
<buildNumber>1</buildNumber>
10+
</snapshot>
11+
<lastUpdated>20200716140456</lastUpdated>
12+
<snapshotVersions>
13+
<snapshotVersion>
14+
<extension>jar</extension>
15+
<value>1.0-20200716.140456-1</value>
16+
<updated>20200716140456</updated>
17+
</snapshotVersion>
18+
<snapshotVersion>
19+
<extension>pom</extension>
20+
<value>1.0-20200716.140456-1</value>
21+
<updated>20200716140456</updated>
22+
</snapshotVersion>
23+
</snapshotVersions>
24+
</versioning>
25+
</metadata>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
562e3ea3e598324f982b7f52e864e971
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
eb481db49ef60127caa7d31f36de70c2cbadf3ec
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata>
3+
<groupId>com.luna</groupId>
4+
<artifactId>luna-commons-tencent</artifactId>
5+
<versioning>
6+
<versions>
7+
<version>1.0-SNAPSHOT</version>
8+
</versions>
9+
<lastUpdated>20200716140456</lastUpdated>
10+
</versioning>
11+
</metadata>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9b98a57c24c5efcf083e6247d1f2dbcc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
005a4d211d562dd8755503ac5bd35e3071255c9c

0 commit comments

Comments
 (0)