Blame view

pom.xml 6.49 KB
1d47516d   zhaowg   从官网COPY:https://g...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?xml version="1.0" encoding="UTF-8"?>
  <!--
    ~ Licensed to the Apache Software Foundation (ASF) under one or more
    ~ contributor license agreements.  See the NOTICE file distributed with
    ~ this work for additional information regarding copyright ownership.
    ~ The ASF licenses this file to You under the Apache License, Version 2.0
    ~ (the "License"); you may not use this file except in compliance with
    ~ the License.  You may obtain a copy of the License at
    ~
    ~     http://www.apache.org/licenses/LICENSE-2.0
    ~
    ~ Unless required by applicable law or agreed to in writing, software
    ~ distributed under the License is distributed on an "AS IS" BASIS,
    ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    ~ See the License for the specific language governing permissions and
    ~ limitations under the License.
    -->
  
  <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>org.apache.rocketmq</groupId>
      <artifactId>spring-boot-starter-rocketmq</artifactId>
2238632a   王彪总(备用)   C_G
25
      <version>1.0.8-SNAPSHOT</version>
1d47516d   zhaowg   从官网COPY:https://g...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  
      <name>Spring Boot Rocket Starter</name>
      <description>Starter for messaging using Apache RocketMQ</description>
      <url>https://github.com/apache/rocketmq-externals/tree/master/spring-boot-starter-rocketmq</url>
  
      <organization>
          <name>Apache Software Foundation</name>
          <url>http://www.apache.org</url>
      </organization>
  
      <licenses>
          <license>
              <name>Apache License, Version 2.0</name>
              <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
              <distribution>repo</distribution>
              <comments>A business-friendly OSS license</comments>
          </license>
      </licenses>
  
      <properties>
          <spring.boot.version>1.5.9.RELEASE</spring.boot.version>
          <rocketmq-version>4.2.0</rocketmq-version>
          <java.version>1.8</java.version>
  
          <resource.delimiter>@</resource.delimiter> <!-- delimiter that doesn't clash with Spring ${} placeholders -->
          <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
          <maven.compiler.source>${java.version}</maven.compiler.source>
          <maven.compiler.target>${java.version}</maven.compiler.target>
          <additionalparam>-Xdoclint:none</additionalparam>
      </properties>
      <dependencies>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter</artifactId>
          </dependency>
          <dependency>
43a3a918   zhaowg   阿里云提供的ons-client最...
63
64
  		    <groupId>com.aliyun.openservices</groupId>
  		   <artifactId>ons-client</artifactId>
dbe4854c   王彪总(备用)   C_G
65
  		   <version>1.8.0.Final</version>
43a3a918   zhaowg   阿里云提供的ons-client最...
66
  		</dependency>
b2ebdd73   zhaowg   兼容原始rocketmq和阿里云环境
67
          <dependency>
1d47516d   zhaowg   从官网COPY:https://g...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
              <groupId>org.springframework</groupId>
              <artifactId>spring-messaging</artifactId>
          </dependency>
          <dependency>
              <groupId>com.fasterxml.jackson.core</groupId>
              <artifactId>jackson-databind</artifactId>
          </dependency>
  
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-configuration-processor</artifactId>
              <optional>true</optional>
          </dependency>
          <dependency>
              <groupId>org.projectlombok</groupId>
              <artifactId>lombok</artifactId>
              <scope>provided</scope>
          </dependency>
  
  
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-test</artifactId>
              <scope>test</scope>
          </dependency>
      </dependencies>
  
      <dependencyManagement>
          <dependencies>
              <dependency>
                  <groupId>org.springframework.boot</groupId>
                  <artifactId>spring-boot-starter-parent</artifactId>
                  <version>${spring.boot.version}</version>
                  <type>pom</type>
                  <scope>import</scope>
              </dependency>
          </dependencies>
      </dependencyManagement>
2238632a   王彪总(备用)   C_G
106
107
108
109
      <distributionManagement>
          <repository>
              <id>nexus_releases</id>
              <name>core Release Repository</name>
dbe4854c   王彪总(备用)   C_G
110
              <url>http://maven.renniting.cn/repository/maven-releases/</url>
2238632a   王彪总(备用)   C_G
111
112
113
114
          </repository>
          <snapshotRepository>
              <id>nexus_snapshots</id>
              <name>core Snapshots Repository</name>
dbe4854c   王彪总(备用)   C_G
115
              <url>http://maven.renniting.cn/repository/maven-snapshots/</url>
2238632a   王彪总(备用)   C_G
116
117
          </snapshotRepository>
      </distributionManagement>
1d47516d   zhaowg   从官网COPY:https://g...
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
      <build>
          <plugins>
              <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-release-plugin</artifactId>
                  <version>2.5.2</version>
                  <configuration>
                      <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
                  </configuration>
              </plugin>
          </plugins>
      </build>
  
      <developers>
          <developer>
              <name>angus.aqlu</name>
              <email>angus.aqlu@gmail.com</email>
              <organization>Jiangsu QianMi Network Technology Co., Ltd.</organization>
              <organizationUrl>http://www.qianmi.com</organizationUrl>
          </developer>
      </developers>
  
      <profiles>
          <profile>
              <id>release-sign-artifacts</id>
              <activation>
                  <property>
                      <name>performRelease</name>
                      <value>true</value>
                  </property>
              </activation>
              <build>
                  <plugins>
                      <plugin>
                          <groupId>org.apache.maven.plugins</groupId>
                          <artifactId>maven-gpg-plugin</artifactId>
                          <version>1.4</version>
                          <configuration>
                              <passphrase>${gpg.passphrase}</passphrase>
                          </configuration>
                          <executions>
                              <execution>
                                  <id>sign-artifacts</id>
                                  <phase>verify</phase>
                                  <goals>
                                      <goal>sign</goal>
                                  </goals>
                              </execution>
                          </executions>
                      </plugin>
                  </plugins>
              </build>
          </profile>
      </profiles>
  </project>