Skip to content

Commit 32387a6

Browse files
authored
Merge pull request #12 from xianyanglin/hango-master
Add the gateway to manage the Ingress
2 parents 40f21a6 + 1ffcf90 commit 32387a6

File tree

317 files changed

+11623
-3777
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+11623
-3777
lines changed

common-advanced/pom.xml

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<groupId>org.hango.cloud</groupId>
7+
<artifactId>hango-gateway-portal-parent</artifactId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>common-advanced</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
15+
<properties>
16+
<!-- Sonar -->
17+
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
18+
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
19+
<sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
20+
<sonar.language>java</sonar.language>
21+
22+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24+
<java.version>1.8</java.version>
25+
<spring.boot.version>2.5.14</spring.boot.version>
26+
</properties>
27+
28+
<packaging>jar</packaging>
29+
30+
31+
<dependencies>
32+
<dependency>
33+
<groupId>org.hango.cloud</groupId>
34+
<artifactId>common-infra</artifactId>
35+
<version>0.0.1-SNAPSHOT</version>
36+
</dependency>
37+
38+
<dependency>
39+
<groupId>io.searchbox</groupId>
40+
<artifactId>jest</artifactId>
41+
<version>5.3.3</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.elasticsearch</groupId>
45+
<artifactId>elasticsearch</artifactId>
46+
</dependency>
47+
<dependency>
48+
<groupId>com.querydsl</groupId>
49+
<artifactId>querydsl-core</artifactId>
50+
</dependency>
51+
</dependencies>
52+
53+
54+
55+
<build>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.jacoco</groupId>
59+
<artifactId>jacoco-maven-plugin</artifactId>
60+
<version>0.8.7</version>
61+
<executions>
62+
<execution>
63+
<id>default-prepare-agent</id>
64+
<goals>
65+
<goal>prepare-agent</goal>
66+
</goals>
67+
<configuration>
68+
<destFile>
69+
${project.build.directory}/jacoco.exec
70+
</destFile>
71+
<propertyName>surefireArgLine</propertyName>
72+
</configuration>
73+
</execution>
74+
<execution>
75+
<id>report</id>
76+
<phase>test</phase>
77+
<goals>
78+
<goal>report</goal>
79+
</goals>
80+
<configuration>
81+
<dataFile>${project.build.directory}/jacoco.exec</dataFile>
82+
<outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory>
83+
</configuration>
84+
</execution>
85+
<execution>
86+
<id>jacoco-check</id>
87+
<goals>
88+
<goal>check</goal>
89+
</goals>
90+
<configuration>
91+
<rules>
92+
<rule>
93+
<element>PACKAGE</element>
94+
<limits>
95+
<limit>
96+
<counter>LINE</counter>
97+
<value>COVEREDRATIO</value>
98+
<minimum>0.8</minimum>
99+
</limit>
100+
</limits>
101+
</rule>
102+
</rules>
103+
</configuration>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
<plugin>
108+
<artifactId>maven-compiler-plugin</artifactId>
109+
<configuration>
110+
<source>1.8</source>
111+
<target>1.8</target>
112+
</configuration>
113+
</plugin>
114+
<plugin>
115+
<groupId>org.apache.maven.plugins</groupId>
116+
<artifactId>maven-jar-plugin</artifactId>
117+
</plugin>
118+
</plugins>
119+
</build>
120+
121+
</project>

0 commit comments

Comments
 (0)