-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
73 lines (72 loc) · 3.11 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
63
64
65
66
67
68
69
70
71
72
73
<?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>com.carroll0911</groupId>
<artifactId>carroll-monitor</artifactId>
<packaging>pom</packaging>
<version>1.1.1-SNAPSHOT</version>
<modules>
<module>carroll-monitor-common</module>
<module>carroll-monitor-application</module>
<module>carroll-monitor-data-collector</module>
</modules>
<properties>
<slf4j-api>1.7.21</slf4j-api>
<lombok>1.16.16</lombok>
<com.alibaba.fastjson>1.2.39</com.alibaba.fastjson>
<github.global.server>github</github.global.server>
<carroll.version>1.1.1-SNAPSHOT</carroll.version>
<springfox.swagger.version>2.7.0</springfox.swagger.version>
<wsdl4j>1.6.3</wsdl4j>
<spring.kafka.version>1.1.3.RELEASE</spring.kafka.version>
<spring.boot.version>1.5.2.RELEASE</spring.boot.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo
</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<configuration>
<message>Maven artifacts for ${project.version}</message>
<noJekyll>true</noJekyll>
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory><!--本地jar地址-->
<branch>refs/heads/master</branch><!--分支的名称-->
<merge>true</merge>
<includes>
<include>**/*</include>
</includes>
<repositoryName>mvn-repo</repositoryName><!--对应github上创建的仓库名称 name-->
<repositoryOwner>carroll0911</repositoryOwner><!--github 仓库所有者即登录用户名-->
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>