|
1 | | -<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"> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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 |
| 3 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.boot</groupId> |
| 8 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 9 | + <version>2.4.1</version> |
| 10 | + <relativePath /> <!-- lookup parent from repository --> |
| 11 | + </parent> |
| 12 | + |
3 | 13 | <groupId>in.flyspark</groupId> |
4 | | - <artifactId>sonar-qube-exporter</artifactId> |
5 | | - <version>1.1.0.0</version> |
6 | | - <name>sonar-qube-exporter</name> |
| 14 | + <artifactId>sonarqube-issue-api-exporter</artifactId> |
| 15 | + <version>2.0</version> |
| 16 | + <packaging>jar</packaging> |
| 17 | + <name>sonarqube-issue-api-exporter</name> |
7 | 18 | <description>Command line tool for exporting SonarQube's analysis into an excel</description> |
| 19 | + |
8 | 20 | <properties> |
9 | 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
10 | 22 | <maven.compiler.source>1.8</maven.compiler.source> |
11 | 23 | <maven.compiler.target>1.8</maven.compiler.target> |
| 24 | + <java.version>1.8</java.version> |
12 | 25 | </properties> |
| 26 | + |
13 | 27 | <dependencies> |
| 28 | + |
| 29 | + <dependency> |
| 30 | + <groupId>org.springframework.boot</groupId> |
| 31 | + <artifactId>spring-boot-starter</artifactId> |
| 32 | + </dependency> |
| 33 | + |
| 34 | + <dependency> |
| 35 | + <groupId>org.springframework.boot</groupId> |
| 36 | + <artifactId>spring-boot-starter-web</artifactId> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework.boot</groupId> |
| 41 | + <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot-devtools</artifactId> |
| 47 | + <scope>runtime</scope> |
| 48 | + <optional>true</optional> |
| 49 | + </dependency> |
| 50 | + |
14 | 51 | <dependency> |
15 | 52 | <groupId>org.apache.poi</groupId> |
16 | 53 | <artifactId>poi</artifactId> |
17 | 54 | <version>4.0.1</version> |
18 | 55 | </dependency> |
| 56 | + |
19 | 57 | <dependency> |
20 | 58 | <groupId>org.apache.poi</groupId> |
21 | 59 | <artifactId>poi-ooxml</artifactId> |
22 | 60 | <version>4.0.1</version> |
23 | 61 | </dependency> |
| 62 | + |
24 | 63 | <dependency> |
25 | 64 | <groupId>com.alibaba</groupId> |
26 | 65 | <artifactId>fastjson</artifactId> |
27 | 66 | <version>1.2.47</version> |
28 | 67 | </dependency> |
29 | 68 |
|
30 | | - <dependency> |
31 | | - <groupId>ch.qos.logback</groupId> |
32 | | - <artifactId>logback-core</artifactId> |
33 | | - <version>1.2.3</version> |
34 | | - </dependency> |
35 | | - <dependency> |
36 | | - <groupId>ch.qos.logback</groupId> |
37 | | - <artifactId>logback-classic</artifactId> |
38 | | - <version>1.2.3</version> |
39 | | - </dependency> |
40 | | - <dependency> |
41 | | - <groupId>org.slf4j</groupId> |
42 | | - <artifactId>slf4j-api</artifactId> |
43 | | - <version>1.7.30</version> |
44 | | - </dependency> |
45 | 69 | </dependencies> |
46 | 70 | <build> |
47 | | - <finalName>sonar-qube-exporter</finalName> |
48 | 71 | <plugins> |
49 | 72 | <plugin> |
50 | | - <artifactId>maven-assembly-plugin</artifactId> |
| 73 | + <groupId>org.springframework.boot</groupId> |
| 74 | + <artifactId>spring-boot-maven-plugin</artifactId> |
51 | 75 | <configuration> |
52 | | - <archive> |
53 | | - <manifest> |
54 | | - <mainClass>in.flyspark.sonarqube.exporter.Exporter</mainClass> |
55 | | - </manifest> |
56 | | - </archive> |
57 | | - <descriptorRefs> |
58 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
59 | | - </descriptorRefs> |
| 76 | + <source>1.8</source> |
| 77 | + <target>1.8</target> |
60 | 78 | </configuration> |
61 | | - <executions> |
62 | | - <execution> |
63 | | - <id>make-assembly</id> |
64 | | - <phase>package</phase> |
65 | | - <goals> |
66 | | - <goal>single</goal> |
67 | | - </goals> |
68 | | - </execution> |
69 | | - </executions> |
70 | 79 | </plugin> |
71 | 80 | </plugins> |
72 | 81 | </build> |
|
0 commit comments