Skip to content

Commit 1d4afe3

Browse files
committed
发布4.0.3.SNAPSHOT
1 parent 45bc585 commit 1d4afe3

File tree

11 files changed

+195
-722
lines changed

11 files changed

+195
-722
lines changed

pom.xml

+121-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.codingapi</groupId>
77
<artifactId>tx-lcn</artifactId>
8-
<version>4.0.3</version>
8+
<version>4.0.0</version>
99
<packaging>pom</packaging>
1010

1111
<name>tx-lcn</name>
@@ -24,9 +24,129 @@
2424
</modules>
2525

2626
<properties>
27+
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
2728
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2829
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
30+
<maven.compile.source>1.7</maven.compile.source>
31+
<maven.compile.target>1.7</maven.compile.target>
2932
<java.version>1.8</java.version>
33+
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
34+
35+
<lcn.last.version>4.0.3.SNAPSHOT</lcn.last.version>
3036
</properties>
3137

38+
39+
40+
<licenses>
41+
<license>
42+
<name>The Apache License, Version 2.0</name>
43+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
44+
</license>
45+
</licenses>
46+
<developers>
47+
<developer>
48+
<name>lorne</name>
49+
<email>[email protected]</email>
50+
<roles>
51+
<role>developer</role>
52+
</roles>
53+
<timezone>+8</timezone>
54+
</developer>
55+
</developers>
56+
57+
<scm>
58+
<connection>scm:git:https://github.com/codingapi/tx-lcn.git</connection>
59+
<developerConnection>scm:git:https://github.com/codingapi/tx-lcn.git</developerConnection>
60+
<url>https://github.com/codingapi/tx-lcn</url>
61+
<tag>v${project.version}</tag>
62+
</scm>
63+
64+
<distributionManagement>
65+
<snapshotRepository>
66+
<id>ossrh</id>
67+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
68+
</snapshotRepository>
69+
<repository>
70+
<id>ossrh</id>
71+
<name>Maven Central Staging Repository</name>
72+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
73+
</repository>
74+
</distributionManagement>
75+
76+
77+
78+
<build>
79+
<plugins>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-compiler-plugin</artifactId>
83+
<configuration>
84+
<source>${java.version}</source>
85+
<target>${java.version}</target>
86+
</configuration>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-compiler-plugin</artifactId>
91+
<version>${maven-compiler-plugin.version}</version>
92+
<configuration>
93+
<source>${maven.compile.source}</source>
94+
<target>${maven.compile.target}</target>
95+
<encoding>${project.build.sourceEncoding}</encoding>
96+
</configuration>
97+
</plugin>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-source-plugin</artifactId>
101+
<version>2.4</version>
102+
<executions>
103+
<execution>
104+
<id>attach-sources</id>
105+
<goals>
106+
<goal>jar-no-fork</goal>
107+
</goals>
108+
</execution>
109+
</executions>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.sonatype.plugins</groupId>
113+
<artifactId>nexus-staging-maven-plugin</artifactId>
114+
<version>1.6.3</version>
115+
<extensions>true</extensions>
116+
<configuration>
117+
<serverId>ossrh</serverId>
118+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
119+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
120+
</configuration>
121+
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-javadoc-plugin</artifactId>
125+
<version>2.10.3</version>
126+
<executions>
127+
<execution>
128+
<id>attach-javadocs</id>
129+
<goals>
130+
<goal>jar</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-gpg-plugin</artifactId>
138+
<version>1.6</version>
139+
<executions>
140+
<execution>
141+
<id>sign-artifacts</id>
142+
<phase>verify</phase>
143+
<goals>
144+
<goal>sign</goal>
145+
</goals>
146+
</execution>
147+
</executions>
148+
</plugin>
149+
</plugins>
150+
</build>
151+
32152
</project>

transaction-dubbo/pom.xml

+11-124
Original file line numberDiff line numberDiff line change
@@ -5,76 +5,39 @@
55
<modelVersion>4.0.0</modelVersion>
66

77

8+
<parent>
9+
<groupId>com.codingapi</groupId>
10+
<artifactId>tx-lcn</artifactId>
11+
<version>4.0.0</version>
12+
</parent>
13+
814
<groupId>com.codingapi</groupId>
915
<artifactId>transaction-dubbo</artifactId>
10-
<version>4.0.3</version>
16+
<version>${lcn.last.version}</version>
17+
1118

1219
<name>transaction-dubbo</name>
1320
<url>https://github.com/codingapi/tx-lcn</url>
1421

1522
<description>transaction-dubbo project for Spring Boot</description>
1623

1724

18-
<licenses>
19-
<license>
20-
<name>The Apache License, Version 2.0</name>
21-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
22-
</license>
23-
</licenses>
24-
<developers>
25-
<developer>
26-
<name>lorne</name>
27-
<email>[email protected]</email>
28-
<roles>
29-
<role>developer</role>
30-
</roles>
31-
<timezone>+8</timezone>
32-
</developer>
33-
</developers>
34-
35-
<scm>
36-
<connection>scm:git:https://github.com/codingapi/tx-lcn.git</connection>
37-
<developerConnection>scm:git:https://github.com/codingapi/tx-lcn.git</developerConnection>
38-
<url>https://github.com/codingapi/tx-lcn</url>
39-
<tag>v${project.version}</tag>
40-
</scm>
41-
42-
<distributionManagement>
43-
<snapshotRepository>
44-
<id>ossrh</id>
45-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46-
</snapshotRepository>
47-
<repository>
48-
<id>ossrh</id>
49-
<name>Maven Central Staging Repository</name>
50-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
51-
</repository>
52-
</distributionManagement>
53-
54-
5525
<properties>
56-
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
57-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
59-
<maven.compile.source>1.7</maven.compile.source>
60-
<maven.compile.target>1.7</maven.compile.target>
61-
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
26+
<dubbo.version>2.5.7</dubbo.version>
6227
</properties>
6328

6429

65-
6630
<dependencies>
67-
6831
<dependency>
6932
<groupId>com.codingapi</groupId>
7033
<artifactId>tx-client</artifactId>
71-
<version>4.0.3</version>
34+
<version>${lcn.last.version}</version>
7235
</dependency>
7336

7437
<dependency>
7538
<groupId>com.alibaba</groupId>
7639
<artifactId>dubbo</artifactId>
77-
<version>2.5.7</version>
40+
<version>${dubbo.version}</version>
7841
<exclusions>
7942
<exclusion>
8043
<groupId>org.springframework</groupId>
@@ -88,83 +51,7 @@
8851
<artifactId>zkclient</artifactId>
8952
<version>0.3</version>
9053
</dependency>
91-
92-
93-
9454
</dependencies>
9555

9656

97-
<build>
98-
<plugins>
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-compiler-plugin</artifactId>
102-
<configuration>
103-
<source>1.7</source>
104-
<target>1.7</target>
105-
</configuration>
106-
</plugin>
107-
<plugin>
108-
<groupId>org.apache.maven.plugins</groupId>
109-
<artifactId>maven-compiler-plugin</artifactId>
110-
<version>${maven-compiler-plugin.version}</version>
111-
<configuration>
112-
<source>${maven.compile.source}</source>
113-
<target>${maven.compile.target}</target>
114-
<encoding>${project.build.sourceEncoding}</encoding>
115-
</configuration>
116-
</plugin>
117-
<plugin>
118-
<groupId>org.apache.maven.plugins</groupId>
119-
<artifactId>maven-source-plugin</artifactId>
120-
<version>2.4</version>
121-
<executions>
122-
<execution>
123-
<id>attach-sources</id>
124-
<goals>
125-
<goal>jar-no-fork</goal>
126-
</goals>
127-
</execution>
128-
</executions>
129-
</plugin>
130-
<plugin>
131-
<groupId>org.sonatype.plugins</groupId>
132-
<artifactId>nexus-staging-maven-plugin</artifactId>
133-
<version>1.6.3</version>
134-
<extensions>true</extensions>
135-
<configuration>
136-
<serverId>ossrh</serverId>
137-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
138-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
139-
</configuration>
140-
</plugin>
141-
<plugin>
142-
<groupId>org.apache.maven.plugins</groupId>
143-
<artifactId>maven-javadoc-plugin</artifactId>
144-
<version>2.10.3</version>
145-
<executions>
146-
<execution>
147-
<id>attach-javadocs</id>
148-
<goals>
149-
<goal>jar</goal>
150-
</goals>
151-
</execution>
152-
</executions>
153-
</plugin>
154-
<plugin>
155-
<groupId>org.apache.maven.plugins</groupId>
156-
<artifactId>maven-gpg-plugin</artifactId>
157-
<version>1.6</version>
158-
<executions>
159-
<execution>
160-
<id>sign-artifacts</id>
161-
<phase>verify</phase>
162-
<goals>
163-
<goal>sign</goal>
164-
</goals>
165-
</execution>
166-
</executions>
167-
</plugin>
168-
</plugins>
169-
</build>
17057
</project>

0 commit comments

Comments
 (0)