-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
170 lines (155 loc) · 5.91 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
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
106
107
108
109
110
111
112
113
114
115
116
117
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
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>com.springboot.example</groupId>
<artifactId>springBootSimple</artifactId>
<packaging>pom</packaging>
<version>1.0.2-SNAPSHOT</version>
<properties>
<java.version>11</java.version>
<spring-cloud.version>Hoxton.SR1</spring-cloud.version>
<google-guava.version>19.0</google-guava.version>
<commons-collections.version>4.4</commons-collections.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<version>3.1</version>
<executions>
<execution>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
<configuration>
<toolchains>
<jdk>
<version>11</version>
</jdk>
</toolchains>
</configuration>
</plugin>
<!-- <plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<pushFeatures>true</pushFeatures>
<pushHotfixes>true</pushHotfixes>
<pushReleases>true</pushReleases>
<enableSshAgent>true</enableSshAgent>
<allowSnapshots>true</allowSnapshots>
<autoVersionSubmodules>true</autoVersionSubmodules>
<flowInitContext>
<masterBranchName>master</masterBranchName>
<developBranchName>develop</developBranchName>
<featureBranchPrefix>feature-</featureBranchPrefix>
<releaseBranchPrefix>release-</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
<versionTagPrefix>springBootSimple-</versionTagPrefix>
</flowInitContext>
</configuration>
<dependencies>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch.agentproxy.jsch</artifactId>
<type>jar</type>
<version>0.0.9</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<type>jar</type>
<version>0.1.54</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch.agentproxy.core</artifactId>
<type>jar</type>
<version>0.0.9</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch.agentproxy.usocket-jna</artifactId>
<type>jar</type>
<version>0.0.9</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<type>jar</type>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>platform</artifactId>
<type>jar</type>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch.agentproxy.sshagent</artifactId>
<type>jar</type>
<version>0.0.9</version>
</dependency>
</dependencies>
</plugin> -->
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.14.0</version>
<configuration>
<installProject>false</installProject>
<verbose>false</verbose>
<fetchRemote>true</fetchRemote>
<pushRemote>true</pushRemote>
<gitFlowConfig>
<productionBranch>master</productionBranch>
<developmentBranch>develop</developmentBranch>
<featureBranchPrefix>feature-</featureBranchPrefix>
<releaseBranchPrefix>release-</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
<supportBranchPrefix>support-</supportBranchPrefix>
<versionTagPrefix>microServiceSimple-</versionTagPrefix>
<!-- <origin>origin</origin> -->
</gitFlowConfig>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>audit</module>
<module>configServer</module>
<module>eurekaServer</module>
<module>feignClient</module>
<module>zuulServer</module>
<module>produit</module>
</modules>
<distributionManagement>
<repository>
<id>ihd_releases</id>
<url>http://192.168.5.6:8081/repository/ihd_releases</url>
</repository>
<snapshotRepository>
<id>ihd_snapshots</id>
<url>http://192.168.5.6:8081/repository/ihd_snapshots</url>
</snapshotRepository>
</distributionManagement>
<scm>
<url>scm:git:ssh://git@github.com/mohalaoui/spring-boot-api-gateway.git</url>
<connection>scm:git:ssh://git@github.com/mohalaoui/spring-boot-api-gateway.git</connection>
<developerConnection>scm:git:ssh://git@github.com/mohalaoui/spring-boot-api-gateway.git</developerConnection>
<tag>HEAD</tag>
</scm>
</project>