77 <groupId >com.fd</groupId >
88 <artifactId >security.jwt</artifactId >
99 <version >1.0-SNAPSHOT</version >
10+ <modules >
11+ <module >stateless-auth</module >
12+ </modules >
1013 <packaging >pom</packaging >
1114
1215 <properties >
1518 <maven .compiler.target>1.8</maven .compiler.target>
1619
1720 <spring .boot.version>2.0.5.RELEASE</spring .boot.version>
21+ <spring .cloud.starter.hystrix.version>1.4.5.RELEASE</spring .cloud.starter.hystrix.version>
1822 <hamcrest-version >1.3</hamcrest-version >
1923 <lombok-version >1.18.2</lombok-version >
2024 <mapstruct .version>1.2.0.Final</mapstruct .version>
2731
2832 </properties >
2933
34+ <dependencyManagement >
35+ <dependencies >
36+ <dependency >
37+ <groupId >org.springframework.cloud</groupId >
38+ <artifactId >spring-cloud-dependencies</artifactId >
39+ <version >Finchley.SR1</version >
40+ <type >pom</type >
41+ <scope >import</scope >
42+ </dependency >
3043
44+ <dependency >
45+ <groupId >org.springframework.boot</groupId >
46+ <artifactId >spring-boot-starter-parent</artifactId >
47+ <version >${spring.boot.version} </version >
48+ <type >pom</type >
49+ <scope >import</scope >
50+ </dependency >
51+ </dependencies >
52+ </dependencyManagement >
53+
54+ <dependencies >
55+ <dependency >
56+ <groupId >org.projectlombok</groupId >
57+ <artifactId >lombok</artifactId >
58+ <version >${lombok-version} </version >
59+ </dependency >
60+
61+ <dependency >
62+ <groupId >org.hamcrest</groupId >
63+ <artifactId >hamcrest-all</artifactId >
64+ <version >${hamcrest-version} </version >
65+ <scope >test</scope >
66+ </dependency >
67+
68+ <dependency >
69+ <groupId >org.apache.logging.log4j</groupId >
70+ <artifactId >log4j-core</artifactId >
71+ </dependency >
72+
73+ <dependency >
74+ <groupId >org.apache.logging.log4j</groupId >
75+ <artifactId >log4j-slf4j-impl</artifactId >
76+ </dependency >
77+ </dependencies >
78+
79+ <build >
80+ <plugins >
81+ <!-- MAVEN COMPILER PLUGIN -->
82+ <plugin >
83+ <groupId >org.apache.maven.plugins</groupId >
84+ <artifactId >maven-compiler-plugin</artifactId >
85+ <version >${maven.plugin.compiler.version} </version >
86+ <configuration >
87+ <source >${java-version} </source >
88+ <target >${java-version} </target >
89+ <encoding >UTF-8</encoding >
90+
91+ <annotationProcessorPaths >
92+ <path >
93+ <groupId >org.mapstruct</groupId >
94+ <artifactId >mapstruct-processor</artifactId >
95+ <version >${mapstruct.version} </version >
96+ </path >
97+ <path >
98+ <groupId >org.projectlombok</groupId >
99+ <artifactId >lombok</artifactId >
100+ <version >${lombok-version} </version >
101+ </path >
102+ </annotationProcessorPaths >
103+ </configuration >
104+ </plugin >
105+
106+ <!-- MAVEN ADD GENERATED-SOURCES TO CLASSPATH -->
107+ <plugin >
108+ <groupId >org.codehaus.mojo</groupId >
109+ <artifactId >build-helper-maven-plugin</artifactId >
110+ <version >${maven.plugin.build-helper.version} </version >
111+ <executions >
112+ <execution >
113+ <phase >generate-sources</phase >
114+ <goals >
115+ <goal >add-source</goal >
116+ </goals >
117+ <configuration >
118+ <sources >
119+ <source >target/generated-sources/annotations</source >
120+ </sources >
121+ </configuration >
122+ </execution >
123+ </executions >
124+ </plugin >
125+
126+ <plugin >
127+ <groupId >org.springframework.boot</groupId >
128+ <artifactId >spring-boot-maven-plugin</artifactId >
129+ </plugin >
130+ </plugins >
131+ </build >
31132</project >
0 commit comments